From 30fbd5078c241da1d938caee368dfb4dce962476 Mon Sep 17 00:00:00 2001 From: Miguel Alonso Jr Date: Tue, 10 Oct 2023 17:52:45 -0400 Subject: [PATCH 1/3] Bumped numpy version. --- ml-agents-envs/setup.py | 2 +- ml-agents/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ml-agents-envs/setup.py b/ml-agents-envs/setup.py index 3fa6915437..0650528ab3 100644 --- a/ml-agents-envs/setup.py +++ b/ml-agents-envs/setup.py @@ -60,7 +60,7 @@ def run(self): "pyyaml>=3.1.0", "gym>=0.21.0", "pettingzoo==1.15.0", - "numpy==1.21.2", + "numpy>=1.21.2,<2.0", "filelock>=3.4.0", ], python_requires=">=3.10.1,<=3.10.12", diff --git a/ml-agents/setup.py b/ml-agents/setup.py index f77374d07d..b97b46cd49 100644 --- a/ml-agents/setup.py +++ b/ml-agents/setup.py @@ -58,7 +58,7 @@ def run(self): "grpcio>=1.11.0,<=1.48.2", "h5py>=2.9.0", f"mlagents_envs=={VERSION}", - "numpy>=1.13.3,<2.0", + "numpy>=1.21.2,<2.0", "Pillow>=4.2.1", "protobuf>=3.6,<3.20", "pyyaml>=3.1.0", From 004ba8c494364e3f290aef26d3000a0786343483 Mon Sep 17 00:00:00 2001 From: Miguel Alonso Jr Date: Tue, 10 Oct 2023 17:57:35 -0400 Subject: [PATCH 2/3] Updated CHANGELOG. --- com.unity.ml-agents/CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/com.unity.ml-agents/CHANGELOG.md b/com.unity.ml-agents/CHANGELOG.md index 754e5639d8..23f73fc74d 100755 --- a/com.unity.ml-agents/CHANGELOG.md +++ b/com.unity.ml-agents/CHANGELOG.md @@ -6,6 +6,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [Unrelease] +### Major Changes +#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#) + +#### ml-agents / ml-agents-envs + +### Minor Changes +#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#) + +#### ml-agents / ml-agents-envs + +### Bug Fixes +#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#) + +#### ml-agents / ml-agents-envs +- Bumped numpy version to >=1.21.2,<2.0 (#) + ## [3.0.0-exp.1] - 2023-10-09 ### Major Changes #### com.unity.ml-agents / com.unity.ml-agents.extensions (C#) From 16872234176f90606694ad8fdf07c030e5c6338e Mon Sep 17 00:00:00 2001 From: Miguel Alonso Jr Date: Tue, 10 Oct 2023 18:04:34 -0400 Subject: [PATCH 3/3] Lowered upper python version to <1.24 --- com.unity.ml-agents.extensions/package.json | 2 +- com.unity.ml-agents/CHANGELOG.md | 4 ++-- ml-agents-envs/setup.py | 2 +- ml-agents/setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/com.unity.ml-agents.extensions/package.json b/com.unity.ml-agents.extensions/package.json index 839d625c3f..0f77b2748b 100644 --- a/com.unity.ml-agents.extensions/package.json +++ b/com.unity.ml-agents.extensions/package.json @@ -1,7 +1,7 @@ { "name": "com.unity.ml-agents.extensions", "displayName": "ML Agents Extensions", - "version": "0.6.1-exp.1", + "version": "0.6.1-preview", "unity": "2022.3", "description": "A source-only package for new features based on ML-Agents", "dependencies": { diff --git a/com.unity.ml-agents/CHANGELOG.md b/com.unity.ml-agents/CHANGELOG.md index 23f73fc74d..d88eb41882 100755 --- a/com.unity.ml-agents/CHANGELOG.md +++ b/com.unity.ml-agents/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unrelease] +## [Unreleased] ### Major Changes #### com.unity.ml-agents / com.unity.ml-agents.extensions (C#) @@ -21,7 +21,7 @@ and this project adheres to #### com.unity.ml-agents / com.unity.ml-agents.extensions (C#) #### ml-agents / ml-agents-envs -- Bumped numpy version to >=1.21.2,<2.0 (#) +- Bumped numpy version to >=1.21.2,<1.24.0 (#) ## [3.0.0-exp.1] - 2023-10-09 ### Major Changes diff --git a/ml-agents-envs/setup.py b/ml-agents-envs/setup.py index 0650528ab3..d224fb4a7b 100644 --- a/ml-agents-envs/setup.py +++ b/ml-agents-envs/setup.py @@ -60,7 +60,7 @@ def run(self): "pyyaml>=3.1.0", "gym>=0.21.0", "pettingzoo==1.15.0", - "numpy>=1.21.2,<2.0", + "numpy>=1.21.2,<1.24.0", "filelock>=3.4.0", ], python_requires=">=3.10.1,<=3.10.12", diff --git a/ml-agents/setup.py b/ml-agents/setup.py index b97b46cd49..ee69dff40e 100644 --- a/ml-agents/setup.py +++ b/ml-agents/setup.py @@ -58,7 +58,7 @@ def run(self): "grpcio>=1.11.0,<=1.48.2", "h5py>=2.9.0", f"mlagents_envs=={VERSION}", - "numpy>=1.21.2,<2.0", + "numpy>=1.21.2,<1.24.0", "Pillow>=4.2.1", "protobuf>=3.6,<3.20", "pyyaml>=3.1.0",