Skip to content

Commit

Permalink
NumPy version depending on Python version (#2200)
Browse files Browse the repository at this point in the history
* maint: fix numpy version depending on python version

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* maint: fix dependencies

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
2 people authored and germa89 committed Jul 27, 2023
1 parent fdffdb4 commit 55e0e2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ dependencies = [
"grpcio>=1.30.0", # tested up to grpcio==1.35
"importlib-metadata>=4.0",
"matplotlib>=3.0.0", # for colormaps for pyvista
"numpy>=1.14.0",
"numpy>=1.14.0,<1.25.0; python_version < '3.9'",
"numpy>=1.14.0; python_version >= '3.9'",
"pexpect>=4.8.0 ; platform_system=='Linux'",
"protobuf>=3.12.2", # minimum required based on latest ansys-grpc-mapdl
"psutil>=5.9.4",
Expand Down

0 comments on commit 55e0e2e

Please sign in to comment.