Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion UnitySDK/Assets/ML-Agents/Scripts/Academy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public abstract class Academy : MonoBehaviour
[SerializeField]
public BroadcastHub broadcastHub = new BroadcastHub();

private const string kApiVersion = "API-8";
private const string kApiVersion = "API-9";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the procedure on these? We didn't actually change the API for this release, right?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We usually just change the API along with the major release (even though they are still compatible).


/// Temporary storage for global gravity value
/// Used to restore oringal value when deriving Academy modifies it
Expand Down
4 changes: 2 additions & 2 deletions gym-unity/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

setup(
name="gym_unity",
version="0.4.2",
version="0.4.3",
description="Unity Machine Learning Agents Gym Interface",
license="Apache License 2.0",
author="Unity Technologies",
author_email="ML-Agents@unity3d.com",
url="https://github.com/Unity-Technologies/ml-agents",
packages=find_packages(),
install_requires=["gym", "mlagents_envs==0.8.2"],
install_requires=["gym", "mlagents_envs==0.9.0"],
)
2 changes: 1 addition & 1 deletion ml-agents-envs/mlagents/envs/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __init__(
atexit.register(self._close)
self.port = base_port + worker_id
self._buffer_size = 12000
self._version_ = "API-8"
self._version_ = "API-9"
self._loaded = (
False
) # If true, this means the environment was successfully loaded
Expand Down
2 changes: 1 addition & 1 deletion ml-agents-envs/mlagents/envs/mock_communicator.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def initialize(self, inputs: UnityInput) -> UnityOutput:
is_training=True,
)
rl_init = UnityRLInitializationOutput(
name="RealFakeAcademy", version="API-8", log_path="", brain_parameters=[bp]
name="RealFakeAcademy", version="API-9", log_path="", brain_parameters=[bp]
)
return UnityOutput(rl_initialization_output=rl_init)

Expand Down
2 changes: 1 addition & 1 deletion ml-agents-envs/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="mlagents_envs",
version="0.8.2",
version="0.9.0",
description="Unity Machine Learning Agents Interface",
url="https://github.com/Unity-Technologies/ml-agents",
author="Unity Technologies",
Expand Down
4 changes: 2 additions & 2 deletions ml-agents/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="mlagents",
version="0.8.2",
version="0.9.0",
description="Unity Machine Learning Agents",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -29,7 +29,7 @@
),
zip_safe=False,
install_requires=[
"mlagents_envs==0.8.2",
"mlagents_envs==0.9.0",
"tensorflow>=1.7,<1.8",
"Pillow>=4.2.1",
"matplotlib",
Expand Down