Skip to content

Commit

Permalink
remove click version lock
Browse files Browse the repository at this point in the history
closes #69
  • Loading branch information
tlpss committed Jan 2, 2024
1 parent ed70260 commit 5cbacd7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion airo-camera-toolkit/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"opencv-python-headless==4.8.1.78", # Lock to match contrib version.
"matplotlib",
"rerun-sdk>=0.11.0",
"click==8.1.3", # 8.1.4 breaks mypy
"click",
"loguru",
],
extras_require={
Expand Down
6 changes: 1 addition & 5 deletions airo-robots/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@
description="Interfaces, hardware implementations of those interfaces and other functionalities to control robot manipulators and grippers at the Ghent University AI and Robotics Lab",
author="Thomas Lips",
author_email="[email protected]",
install_requires=[
"numpy",
"ur-rtde>=1.5.7", # cf https://github.com/airo-ugent/airo-mono/issues/52
"click==8.1.3", # 8.1.4 breaks mypy
],
install_requires=["numpy", "ur-rtde>=1.5.7", "click"], # cf https://github.com/airo-ugent/airo-mono/issues/52
extras_require={
"external": [
f"airo_typing @ file://localhost/{root_folder}/airo-typing",
Expand Down
2 changes: 1 addition & 1 deletion airo-teleop/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
description="teleoperation functionality for manually controlling manipulators and grippers using gaming controllers etc. at the Ghent University AI and Robotics Lab",
author="Thomas Lips",
author_email="[email protected]",
install_requires=["pygame", "click==8.1.3", "loguru"], # 8.1.4 breaks mypy
install_requires=["pygame", "click", "loguru"],
extras_require={
"external": [
f"airo_typing @ file://localhost/{root_folder}/airo-typing",
Expand Down

0 comments on commit 5cbacd7

Please sign in to comment.