Skip to content

Commit 23404c0

Browse files
author
Ervin T
authored
Tick version of API and pypi packages to 10 (#2610)
* Tick versions for pip packages * Tick API version to 10
1 parent e557dab commit 23404c0

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

UnitySDK/Assets/ML-Agents/Scripts/Academy.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public abstract class Academy : MonoBehaviour
9797
[SerializeField]
9898
public BroadcastHub broadcastHub = new BroadcastHub();
9999

100-
private const string k_KApiVersion = "API-9";
100+
private const string k_KApiVersion = "API-10";
101101

102102
/// Temporary storage for global gravity value
103103
/// Used to restore oringal value when deriving Academy modifies it
@@ -360,7 +360,7 @@ private void UpdateResetParameters()
360360
customResetParameters = newResetParameters.CustomResetParameters;
361361
}
362362
}
363-
363+
364364
/// <summary>
365365
/// Configures the environment settings depending on the training/inference
366366
/// mode and the corresponding parameters passed in the Editor.

gym-unity/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
setup(
66
name="gym_unity",
7-
version="0.4.6",
7+
version="0.4.7",
88
description="Unity Machine Learning Agents Gym Interface",
99
license="Apache License 2.0",
1010
author="Unity Technologies",
1111
author_email="[email protected]",
1212
url="https://github.com/Unity-Technologies/ml-agents",
1313
packages=find_packages(),
14-
install_requires=["gym", "mlagents_envs==0.9.3"],
14+
install_requires=["gym", "mlagents_envs==0.10.0"],
1515
)

ml-agents-envs/mlagents/envs/environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def __init__(
7272
atexit.register(self._close)
7373
self.port = base_port + worker_id
7474
self._buffer_size = 12000
75-
self._version_ = "API-9"
75+
self._version_ = "API-10"
7676
self._loaded = (
7777
False
7878
) # If true, this means the environment was successfully loaded

ml-agents-envs/mlagents/envs/mock_communicator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def initialize(self, inputs: UnityInput) -> UnityOutput:
5656
is_training=True,
5757
)
5858
rl_init = UnityRLInitializationOutput(
59-
name="RealFakeAcademy", version="API-9", log_path="", brain_parameters=[bp]
59+
name="RealFakeAcademy", version="API-10", log_path="", brain_parameters=[bp]
6060
)
6161
return UnityOutput(rl_initialization_output=rl_init)
6262

ml-agents-envs/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="mlagents_envs",
8-
version="0.9.3",
8+
version="0.10.0",
99
description="Unity Machine Learning Agents Interface",
1010
url="https://github.com/Unity-Technologies/ml-agents",
1111
author="Unity Technologies",

ml-agents/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="mlagents",
13-
version="0.9.3",
13+
version="0.10.0",
1414
description="Unity Machine Learning Agents",
1515
long_description=long_description,
1616
long_description_content_type="text/markdown",
@@ -35,7 +35,7 @@
3535
"h5py>=2.9.0",
3636
"jupyter",
3737
"matplotlib",
38-
"mlagents_envs==0.9.3",
38+
"mlagents_envs==0.10.0",
3939
"numpy>=1.13.3,<2.0",
4040
"Pillow>=4.2.1",
4141
"protobuf>=3.6",

0 commit comments

Comments
 (0)