From 0c048a185e87c31c348fb9a1bd39027e1b0fcfe5 Mon Sep 17 00:00:00 2001 From: Fabien Danieau Date: Mon, 8 Apr 2024 11:45:00 +0200 Subject: [PATCH 1/2] enhancement #255: specify version of dependencies --- setup.cfg | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.cfg b/setup.cfg index 834561d5..5dc2c1ea 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,11 +15,11 @@ include_package_data = True package_dir= =src install_requires = - numpy==1.26.1 - protobuf==4.25.1 - grpcio==1.59.3 + numpy>=1.24.0,<=1.26.4 + protobuf>=4.25.0,<=4.25.3 + grpcio>=1.59.0, <=1.62.2 pyquaternion==0.9.9 - opencv-python==4.8.0.74 + opencv-python>=4.8.0, <4.9.0 mobile-base-sdk@git+https://github.com/pollen-robotics/mobile-base-sdk.git [options.packages.find] @@ -32,8 +32,8 @@ dev = black==23.12.1 coverage==7.3.2 mypy==1.8.0 isort==5.13.2 - types-protobuf==4.24.0.1 - pdoc==14.4.0 + types-protobuf>=4.24.0,<=4.25.3 + pdoc>=14.0.0,<=14.4.0 pollen = reachy2-sdk-api@git+ssh://git@github.com/pollen-robotics/reachy2-sdk-api.git#subdirectory=python [flake8] From 3b78744bd52a652448a86602c36f29cfd21fe5ce Mon Sep 17 00:00:00 2001 From: Fabien Danieau Date: Mon, 8 Apr 2024 15:38:11 +0200 Subject: [PATCH 2/2] set version to 1.0.1 --- src/reachy2_sdk/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reachy2_sdk/__init__.py b/src/reachy2_sdk/__init__.py index 1dc729d7..ac784ece 100644 --- a/src/reachy2_sdk/__init__.py +++ b/src/reachy2_sdk/__init__.py @@ -20,4 +20,4 @@ from .reachy_sdk import ReachySDK # noqa: F401 -__version__ = "1.0.0" +__version__ = "1.0.1"