Skip to content

Commit

Permalink
Lock numpy and cvxpy versions to avoid build crash (#2963)
Browse files Browse the repository at this point in the history
* Lock numpy and scipy versions to avoid build crash

* Lock cvxpy version instead of scipy
  • Loading branch information
timothy-nunn authored Oct 11, 2023
1 parent f474ba8 commit 50df2c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ mkdocs-material>=4.6.3
mkdocs-git-revision-date-localized-plugin >= 1.2
mkdocs-glightbox >= 0.3.4
pymdown-extensions>=6.3
numpy>=1.19.0,<=1.21.5
numpy>=1.19.0,!=1.22,!=1.24,>=1.23.0
scipy>=0.19.1
matplotlib>=2.1.1
pillow>=5.1.0
Expand All @@ -21,3 +21,4 @@ mkdocstrings==0.18.0
PyVMCON>=2.1.0,<3.0.0
CoolProp>=6.4
Jinja2>=3.0
cvxpy!=1.3.0,!=1.3.1
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@
},
"test_suite": "pytest",
"install_requires": [
"numpy>=1.19.0,<1.22.1",
"numpy>=1.19.0,!=1.22,!=1.24,>=1.23.0",
"scipy>=0.19.1",
"cvxpy!=1.3.0,!=1.3.1",
"importlib-resources ; python_version<'3.9'",
"pandas",
"tables",
Expand Down

0 comments on commit 50df2c3

Please sign in to comment.