Skip to content

Commit

Permalink
Adjustment of numpy version for github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardObi committed Apr 18, 2024
1 parent 3d977a1 commit 6371f54
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
def tests(session):
session.install("setuptools")
session.install("numpy>=1.26.4")
session.install("-r", "requirements.in")
session.install("numpy") #get numpy's latest version based on python version (e.g. python3.12)
session.install(".")
session.install("pytest")
session.install("pytest-mock")
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
nibabel~=3.2.1
nox~=2024.4.15
numpy>=1.26.4
numpy>=1.23.5
opencv_contrib_python_headless~=4.8.1.78
Pillow~=10.3.0
pyradiomics~=3.0.1a3
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ nibabel~=3.2.1
# via -r requirements.in
nox~=2024.4.15
# via -r requirements.in
numpy>=1.26.4
numpy>=1.23.5
# via
# -r requirements.in
# imageio
Expand Down

0 comments on commit 6371f54

Please sign in to comment.