浏览代码

Remove filters / 0.11.0.dev3

/tag-0.11.0.dev3
Jonathan Harper 5 年前
当前提交
f4c14d1d
共有 4 个文件被更改,包括 3 次插入12 次删除
  1. 9
      .circleci/config.yml
  2. 2
      gym-unity/setup.py
  3. 2
      ml-agents-envs/setup.py
  4. 2
      ml-agents/setup.py

9
.circleci/config.yml


pyversion: 3.7.3
# Test python 3.7 with the newest supported versions
pip_constraints: test_constraints_max_version.txt
filters:
tags:
only: /[0-9]+(\.[0-9]+)*(\.dev[0-9]+)*/
requires:
- python_3.7.3
filters:
tags:
only: /[0-9]+(\.[0-9]+)*(\.dev[0-9]+)*/

name: deploy ml-agents
directory: ml-agents
requires:
- python_3.7.3
filters:
tags:
only: /[0-9]+(\.[0-9]+)*(\.dev[0-9]+)*/

name: deploy gym-unity
directory: gym-unity
requires:
- python_3.7.3
filters:
tags:
only: /[0-9]+(\.[0-9]+)*(\.dev[0-9]+)*/

2
gym-unity/setup.py


from setuptools import setup, find_packages
from setuptools.command.install import install
VERSION = "0.11.0.dev0"
VERSION = "0.11.0.dev3"
class VerifyVersionCommand(install):

2
ml-agents-envs/setup.py


from setuptools import setup
from setuptools.command.install import install
VERSION = "0.11.0.dev0"
VERSION = "0.11.0.dev3"
here = os.path.abspath(os.path.dirname(__file__))

2
ml-agents/setup.py


from setuptools import setup, find_namespace_packages
from setuptools.command.install import install
VERSION = "0.11.0.dev0"
VERSION = "0.11.0.dev3"
here = os.path.abspath(os.path.dirname(__file__))

正在加载...
取消
保存