Skip to content

Commit

Permalink
Fix pip requirements versions (#23)
Browse files Browse the repository at this point in the history
* Fix help string in install-luxonis-packages script

* Pin pip requirements to specific versions
  • Loading branch information
geektrove authored Oct 1, 2023
1 parent a60589e commit f71041e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion context/install-luxonis-packages
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

if [[ $# -ne 3 ]]; then
echo "Usage: $0 [robotics-vision-core] [depthai-sdk-version] [robothub-oak-version]"
echo "Usage: $0 [robotics-vision-core] [depthai-sdk-version] [robothub-version]"
echo "robotics-vision-core: rvc2, rvc3"
exit 1
fi
Expand Down
14 changes: 7 additions & 7 deletions context/requirements-minimal.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
distinctipy
marshmallow
numpy
opencv-contrib-python-headless
requests
sentry-sdk
xmltodict
distinctipy==1.2.3
marshmallow==3.20.1
numpy==1.26.0
opencv-contrib-python-headless==4.8.1.78
requests==2.31.0
sentry-sdk==1.31.0
xmltodict==0.13.0
18 changes: 9 additions & 9 deletions context/requirements-regular.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
av
blobconverter
distinctipy
marshmallow
numpy
opencv-contrib-python-headless
requests
sentry-sdk
xmltodict
av==10.0.0
blobconverter==1.4.2
distinctipy==1.2.3
marshmallow==3.20.1
numpy==1.26.0
opencv-contrib-python-headless==4.8.1.78
requests==2.31.0
sentry-sdk==1.31.0
xmltodict==0.13.0

0 comments on commit f71041e

Please sign in to comment.