Skip to content

Commit

Permalink
ci: require numpy<2.0.0 for tensorflow compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Agustin-Picard authored and lucashervier committed Sep 30, 2024
1 parent 61c8b8f commit b3192bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy<2.0.0
tensorflow>=2.1.0
numpy
scikit-learn
scikit-image
matplotlib
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
author="Thomas FEL",
author_email="[email protected]",
license="MIT",
install_requires=['tensorflow>=2.1.0,<2.16.0', 'numpy', 'scikit-learn', 'scikit-image',
install_requires=['numpy<2.0.0', 'tensorflow>=2.1.0,<2.16.0', 'scikit-learn', 'scikit-image',
'matplotlib', 'scipy', 'opencv-python', 'deprecated'],
extras_require={
"tests": ["pytest", "pylint"],
Expand Down

0 comments on commit b3192bb

Please sign in to comment.