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

[Help wanted] Update requirements.txt for Python > 3.7 #1095

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 21 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,29 @@
# Python 3.7 - 3.10
opencv-python==4.2.0.32; python_version <= "3.7"
opencv-python~=4.5.5.64,<=4.5.5.64; python_version < "3.10"
opencv-python==4.5.5.64; python_version == "3.10"

# opencv 4.5+ will install numpy>=1.21.2
numpy==1.18.4; python_version >= '3.0' and python_version <= "3.7"

# 2.2 breaks in 3.10
networkx==2.2; python_version < "3.10"

networkx>=2.7<3.0; python_version >= "3.10"

# Python 3.10 +
opencv-python~=4.5.5.64,<=4.10.0.84; python_version > "3.10"

# Needs to be more fine grained
Shapely==1.7.1; python_version < "3.10"
Shapely==1.8.*; python_version == "3.10"

py-trees==0.8.3
numpy==1.18.4; python_version >= '3.0'
networkx==2.2
Shapely==1.7.1

psutil
xmlschema==1.0.18
ephem
tabulate
opencv-python==4.2.0.32
matplotlib
six
simple-watchdog-timer
Expand Down
Loading