Skip to content

Commit

Permalink
refactor: 🛠️ update numpy, scipy, and matplotlib dependencies for imp…
Browse files Browse the repository at this point in the history
…roved version compatibility across Python versions
  • Loading branch information
onuralpszr committed Jan 6, 2025
1 parent 2cca69b commit dad7aba
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
10 changes: 5 additions & 5 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 11 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,17 @@ classifiers = [
'Operating System :: MacOS',
]
dependencies = [
"numpy>=1.21.2",
"scipy (==1.10.0); python_version < '3.9'",
"scipy (>=1.10.0,<1.14.1) ; python_version >= '3.9' and python_version < '3.13'",
"scipy (>=1.14.1); python_version >= '3.13'",
"matplotlib>=3.6.0",
"numpy>=1.21.2; python_version < '3.13'",
"numpy>=2.1.0; python_version >= '3.13'",
"scipy==1.10.0; python_version < '3.9'",
"scipy>=1.10.0; python_version >= '3.9' and python_version < '3.13'",
"scipy>=1.14.1; python_version >= '3.13'",
"contourpy>=1.0.7; python_version >= '3.8' and python_version < '3.13'",
"contourpy>=1.3.0; python_version >= '3.13'",
"matplotlib>=3.6.0,<3.8.0; python_version == '3.8'",
"matplotlib>=3.6.0; python_version >= '3.9' and python_version < '3.12'",
"matplotlib>=3.7.3; python_version >= '3.12' and python_version < '3.13'",
"matplotlib>=3.9.2; python_version >= '3.13'",
"pyyaml>=5.3",
"defusedxml>=0.7.1",
"pillow>=9.4",
Expand Down

0 comments on commit dad7aba

Please sign in to comment.