-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1261 from Unity-Technologies/hotfix-050a
Hotfix v0.5.0a
- Loading branch information
Showing
8 changed files
with
540 additions
and
503 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,7 +68,6 @@ | |
*.idea/misc.xml | ||
*.idea/modules.xml | ||
*.iml | ||
*.xml | ||
*.cache | ||
*/build/ | ||
*/dist/ | ||
|
200 changes: 100 additions & 100 deletions
200
UnitySDK/Assets/ML-Agents/Examples/BananaCollectors/Scenes/Banana.unity
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
404 changes: 224 additions & 180 deletions
404
UnitySDK/Assets/ML-Agents/Examples/Hallway/Scenes/HallwayIL.unity
Large diffs are not rendered by default.
Oops, something went wrong.
387 changes: 184 additions & 203 deletions
387
UnitySDK/Assets/ML-Agents/Examples/PushBlock/Scenes/PushBlockIL.unity
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#!/usr/bin/env python | ||
|
||
from setuptools import setup, Command, find_packages | ||
from setuptools import setup, find_packages | ||
|
||
setup(name='gym_unity', | ||
version='0.1.0', | ||
version='0.1.1', | ||
description='Unity Machine Learning Agents Gym Interface', | ||
license='Apache License 2.0', | ||
author='Unity Technologies', | ||
author_email='[email protected]', | ||
url='https://github.com/Unity-Technologies/ml-agents', | ||
packages=find_packages(), | ||
install_requires = ['gym', 'mlagents'] | ||
) | ||
install_requires=['gym', 'mlagents'] | ||
) |