浏览代码

Update package versions for main branch (#5413)

/develop/area-manager
GitHub 3 年前
当前提交
0740b31f
共有 8 个文件被更改,包括 9 次插入9 次删除
  1. 2
      DevProject/Packages/packages-lock.json
  2. 2
      Project/Packages/packages-lock.json
  3. 4
      com.unity.ml-agents.extensions/package.json
  4. 2
      com.unity.ml-agents/Runtime/Academy.cs
  5. 2
      com.unity.ml-agents/package.json
  6. 2
      gym-unity/gym_unity/__init__.py
  7. 2
      ml-agents-envs/mlagents_envs/__init__.py
  8. 2
      ml-agents/mlagents/trainers/__init__.py

2
DevProject/Packages/packages-lock.json


"depth": 0,
"source": "local",
"dependencies": {
"com.unity.ml-agents": "2.0.0-exp.1",
"com.unity.ml-agents": "2.1.0-exp.1",
"com.unity.modules.physics": "1.0.0"
}
},

2
Project/Packages/packages-lock.json


"depth": 0,
"source": "local",
"dependencies": {
"com.unity.ml-agents": "2.0.0-exp.1",
"com.unity.ml-agents": "2.1.0-exp.1",
"com.unity.modules.physics": "1.0.0"
}
},

4
com.unity.ml-agents.extensions/package.json


{
"name": "com.unity.ml-agents.extensions",
"displayName": "ML Agents Extensions",
"version": "0.4.0-preview",
"version": "0.5.0-preview",
"com.unity.ml-agents": "2.0.0-exp.1",
"com.unity.ml-agents": "2.1.0-exp.1",
"com.unity.modules.physics": "1.0.0"
}
}

2
com.unity.ml-agents/Runtime/Academy.cs


/// Unity package version of com.unity.ml-agents.
/// This must match the version string in package.json and is checked in a unit test.
/// </summary>
internal const string k_PackageVersion = "2.0.0-exp.1";
internal const string k_PackageVersion = "2.1.0-exp.1";
const int k_EditorTrainingPort = 5004;

2
com.unity.ml-agents/package.json


{
"name": "com.unity.ml-agents",
"displayName": "ML Agents",
"version": "2.0.0-exp.1",
"version": "2.1.0-exp.1",
"unity": "2019.4",
"description": "Use state-of-the-art machine learning to create intelligent character behaviors in any Unity environment (games, robotics, film, etc.).",
"dependencies": {

2
gym-unity/gym_unity/__init__.py


# Version of the library that will be used to upload to pypi
__version__ = "0.27.0.dev0"
__version__ = "0.28.0.dev0"
# Git tag that will be checked to determine whether to trigger upload to pypi
__release_tag__ = None

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


# Version of the library that will be used to upload to pypi
__version__ = "0.27.0.dev0"
__version__ = "0.28.0.dev0"
# Git tag that will be checked to determine whether to trigger upload to pypi
__release_tag__ = None

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


# Version of the library that will be used to upload to pypi
__version__ = "0.27.0.dev0"
__version__ = "0.28.0.dev0"
# Git tag that will be checked to determine whether to trigger upload to pypi
__release_tag__ = None
正在加载...
取消
保存