Skip to content

Commit

Permalink
Force numpy to be 1.21.2 to test compatibility with python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-mccarthy-unity committed Mar 12, 2024
1 parent ed807e3 commit 774db8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ml-agents-envs/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ def run(self):
"pyyaml>=3.1.0",
"gym>=0.21.0",
"pettingzoo==1.15.0",
"numpy>=1.21.2,<1.24.0",
#"numpy>=1.21.2,<1.24.0",
"numpy==1.21.2",
"filelock>=3.4.0",
],
python_requires=">=3.10.1,<=3.10.12",
Expand Down
3 changes: 2 additions & 1 deletion ml-agents/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ def run(self):
"grpcio>=1.11.0,<=1.48.2",
"h5py>=2.9.0",
f"mlagents_envs=={VERSION}",
"numpy>=1.21.2,<1.24.0",
#"numpy>=1.21.2,<1.24.0",
"numpy==1.21.2",
"Pillow>=4.2.1",
"protobuf>=3.6,<3.21",
"pyyaml>=3.1.0",
Expand Down

0 comments on commit 774db8e

Please sign in to comment.