浏览代码

Merge pull request #1942 from Unity-Technologies/hotfix-pypi

Hotfix pypi
/develop-generalizationTraining-TrainerController
GitHub 5 年前
当前提交
588c8f8d
共有 3 个文件被更改,包括 6 次插入6 次删除
  1. 2
      gym-unity/setup.py
  2. 4
      ml-agents-envs/setup.py
  3. 6
      ml-agents/setup.py

2
gym-unity/setup.py


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
ml-agents-envs/setup.py


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',

'Programming Language :: Python :: 3.6'
],
packages=['mlagents.envs'], # Required
packages=['mlagents.envs', 'mlagents.envs.communicator_objects'], # Required
zip_safe=False,
install_requires=[

6
ml-agents/setup.py


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',

'Programming Language :: Python :: 3.6'
],
packages=['mlagents.trainers'], # Required
packages=['mlagents.trainers', 'mlagents.trainers.bc', 'mlagents.trainers.ppo'], # Required
'mlagents_envs==0.8.0',
'mlagents_envs==0.8.1',
'tensorflow>=1.7,<1.8',
'Pillow>=4.2.1',
'matplotlib',

正在加载...
取消
保存