Skip to content

Commit

Permalink
Merge pull request #256 from pollen-robotics/255-specify-version-of-d…
Browse files Browse the repository at this point in the history
…ependencies

enhancement #255: specify version of dependencies
  • Loading branch information
FabienDanieau authored Apr 8, 2024
2 parents 732de5e + 3b78744 commit d6d33a5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
reachy2-sdk-api@git+https://[email protected]/pollen-robotics/reachy2-sdk-api.git#subdirectory=python

Expand All @@ -33,8 +33,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

[flake8]
exclude = *test*
Expand Down
2 changes: 1 addition & 1 deletion src/reachy2_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@

from .reachy_sdk import ReachySDK # noqa: F401

__version__ = "1.0.0"
__version__ = "1.0.1"

0 comments on commit d6d33a5

Please sign in to comment.