Skip to content

Commit 55e0e2e

Browse files
clatapiepre-commit-ci[bot]
authored andcommitted
NumPy version depending on Python version (#2200)
* 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>
1 parent fdffdb4 commit 55e0e2e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ dependencies = [
2626
"grpcio>=1.30.0", # tested up to grpcio==1.35
2727
"importlib-metadata>=4.0",
2828
"matplotlib>=3.0.0", # for colormaps for pyvista
29-
"numpy>=1.14.0",
29+
"numpy>=1.14.0,<1.25.0; python_version < '3.9'",
30+
"numpy>=1.14.0; python_version >= '3.9'",
3031
"pexpect>=4.8.0 ; platform_system=='Linux'",
3132
"protobuf>=3.12.2", # minimum required based on latest ansys-grpc-mapdl
3233
"psutil>=5.9.4",

0 commit comments

Comments
 (0)