Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lock req versions + release number #261

Merged
merged 13 commits into from
Jan 27, 2025
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[build-system]
requires = [
"setuptools",
"farm-ng-package",
"pybind11",
"wheel",
"grpcio==1.64.1",
# Note: v0.1.4 was yanked.
"farm-ng-package",
"protobuf<=5.27.5",
"grpcio-tools==1.64.1",
]
build-backend = "setuptools.build_meta"
9 changes: 5 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = farm_ng_core
version = 2.3.2-dev
version = 2.3.2
description =
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -21,9 +21,10 @@ classifiers =

[options]
python_requires = >=3.8

install_requires =
protobuf==5.27.2
grpcio==1.64.1
grpcio
protobuf<=5.27.5
psutil
numpy

Expand All @@ -41,7 +42,7 @@ test =
pylint-protobuf
anyio
types-protobuf
grpcio-tools==1.64.1
grpcio-tools

dev =
%(test)s
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
from pybind11.setup_helpers import ParallelCompile, Pybind11Extension, build_ext
from setuptools import setup

__version__ = "2.3.2-dev"
# This must match the version in setup.cfg.
__version__ = "2.3.2"


platform_cxx_flags = []
Expand Down