Skip to content

Commit

Permalink
Merge pull request #1941 from Unity-Technologies/hotfix-pypi
Browse files Browse the repository at this point in the history
Hotfix pypi
  • Loading branch information
eshvk committed Apr 15, 2019
2 parents 2cccc2c + 90b004a commit 9602a8b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gym-unity/setup.py
Expand Up @@ -10,5 +10,5 @@
author_email='ML-Agents@unity3d.com',
url='https://github.com/Unity-Technologies/ml-agents',
packages=find_packages(),
install_requires=['gym', 'mlagents_envs==0.8.0']
install_requires=['gym', 'mlagents_envs==0.8.1']
)
4 changes: 2 additions & 2 deletions ml-agents-envs/setup.py
Expand Up @@ -5,7 +5,7 @@

setup(
name='mlagents_envs',
version='0.8.0',
version='0.8.1',
description='Unity Machine Learning Agents Interface',
url='https://github.com/Unity-Technologies/ml-agents',
author='Unity Technologies',
Expand All @@ -18,7 +18,7 @@
'Programming Language :: Python :: 3.6'
],

packages=['mlagents.envs'], # Required
packages=['mlagents.envs', 'mlagents.envs.communicator_objects'], # Required
zip_safe=False,

install_requires=[
Expand Down
6 changes: 3 additions & 3 deletions ml-agents/setup.py
Expand Up @@ -10,7 +10,7 @@

setup(
name='mlagents',
version='0.8.0',
version='0.8.1',
description='Unity Machine Learning Agents',
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -25,11 +25,11 @@
'Programming Language :: Python :: 3.6'
],

packages=['mlagents.trainers'], # Required
packages=['mlagents.trainers', 'mlagents.trainers.bc', 'mlagents.trainers.ppo'], # Required
zip_safe=False,

install_requires=[
'mlagents_envs==0.8.0',
'mlagents_envs==0.8.1',
'tensorflow>=1.7,<1.8',
'Pillow>=4.2.1',
'matplotlib',
Expand Down

0 comments on commit 9602a8b

Please sign in to comment.