浏览代码

.dev1

/tag-0.12.1.dev1
Chris Elion 5 年前
当前提交
e0225665
共有 5 个文件被更改,包括 7 次插入12 次删除
  1. 2
      gym-unity/gym_unity/__init__.py
  2. 2
      ml-agents-envs/mlagents_envs/__init__.py
  3. 7
      ml-agents-envs/setup.py
  4. 2
      ml-agents/mlagents/trainers/__init__.py
  5. 6
      ml-agents/setup.py

2
gym-unity/gym_unity/__init__.py


__version__ = "0.12.1.dev0"
__version__ = "0.12.1.dev1"

2
ml-agents-envs/mlagents_envs/__init__.py


__version__ = "0.12.1.dev0"
__version__ = "0.12.1.dev1"

7
ml-agents-envs/setup.py


import os
import sys
from setuptools import setup
from setuptools import setup, find_packages
from setuptools.command.install import install
import mlagents_envs

"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
packages=[
"mlagents_envs",
"mlagents_envs.communicator_objects",
], # Required # TODO SIDE CHANNELS
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
zip_safe=False,
install_requires=[
"cloudpickle",

2
ml-agents/mlagents/trainers/__init__.py


__version__ = "0.12.1.dev0"
__version__ = "0.12.1.dev1"

6
ml-agents/setup.py


import os
import sys
from setuptools import setup, find_namespace_packages
from setuptools import setup, find_packages
from setuptools.command.install import install
import mlagents.trainers

"Programming Language :: Python :: 3.7",
],
# find_namespace_packages will recurse through the directories and find all the packages
packages=find_namespace_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]
),
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
zip_safe=False,
install_requires=[
# Test-only dependencies should go in test_requirements.txt, not here.

正在加载...
取消
保存