Skip to content

Commit f3dc8f6

Browse files
Bumped numpy version. (#5997)
* Bumped numpy version. * Updated CHANGELOG. * Lowered upper python version to <1.24
1 parent 97386af commit f3dc8f6

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

com.unity.ml-agents.extensions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.unity.ml-agents.extensions",
33
"displayName": "ML Agents Extensions",
4-
"version": "0.6.1-exp.1",
4+
"version": "0.6.1-preview",
55
"unity": "2022.3",
66
"description": "A source-only package for new features based on ML-Agents",
77
"dependencies": {

com.unity.ml-agents/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to
77
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
88

9+
## [Unreleased]
10+
### Major Changes
11+
#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)
12+
13+
#### ml-agents / ml-agents-envs
14+
15+
### Minor Changes
16+
#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)
17+
18+
#### ml-agents / ml-agents-envs
19+
20+
### Bug Fixes
21+
#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)
22+
23+
#### ml-agents / ml-agents-envs
24+
- Bumped numpy version to >=1.21.2,<1.24.0 (#)
25+
926
## [3.0.0-exp.1] - 2023-10-09
1027
### Major Changes
1128
#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)

ml-agents-envs/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def run(self):
6060
"pyyaml>=3.1.0",
6161
"gym>=0.21.0",
6262
"pettingzoo==1.15.0",
63-
"numpy==1.21.2",
63+
"numpy>=1.21.2,<1.24.0",
6464
"filelock>=3.4.0",
6565
],
6666
python_requires=">=3.10.1,<=3.10.12",

ml-agents/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def run(self):
5858
"grpcio>=1.11.0,<=1.48.2",
5959
"h5py>=2.9.0",
6060
f"mlagents_envs=={VERSION}",
61-
"numpy>=1.13.3,<2.0",
61+
"numpy>=1.21.2,<1.24.0",
6262
"Pillow>=4.2.1",
6363
"protobuf>=3.6,<3.20",
6464
"pyyaml>=3.1.0",

0 commit comments

Comments
 (0)