Skip to content

Commit

Permalink
Update numpy version in requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen351 committed Dec 19, 2023
1 parent 6bc8909 commit aa9a8f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ yum -y install \
graphviz

if [ ! -d "/opt/conda/bin" ]; then
PYTHON_EXES=("/opt/python/cp38-cp38/bin/python3.8" "/opt/python/cp39-cp39/bin/python3.9" "/opt/python/cp310-cp310/bin/python3.10" "/opt/python/cp311-cp311/bin/python3.11" "/opt/python/cp312-cp312/bin/python3.12")
PYTHON_EXES=("/opt/python/cp38-cp38/bin/python3.8" "/opt/python/cp39-cp39/bin/python3.9" "/opt/python/cp310-cp310/bin/python3.10" "/opt/python/cp311-cp311/bin/python3.11")
else
PYTHON_EXES=("/opt/conda/bin/python")
fi
Expand Down
3 changes: 2 additions & 1 deletion tools/ci_build/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# packages used by transformers python unittest (only enabled in Linux CPU CI Pipeline)
packaging
protobuf==3.20.2
numpy==1.26.0
numpy==1.24.0; python_version < '3.12'
numpy==1.26.0; python_version >= '3.12'
coloredlogs==15.0
transformers==4.30.0
psutil
Expand Down

0 comments on commit aa9a8f7

Please sign in to comment.