Skip to content

Commit

Permalink
Merged in develop.
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelalonsojr committed Oct 5, 2024
2 parents 200fe54 + 8760552 commit b992273
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DevProject/ProjectSettings/EditorBuildSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ EditorBuildSettings:
path: Assets/ML-Agents/Scripts/Tests/Runtime/AcademyTest/AcademyStepperTestScene.unity
guid: 9bafc50b1e55b43b2b1ae9620f1f8311
m_configObjects:
com.unity.ml-agents.settings: {fileID: 11400000, guid: b176c44294f5e434bb5109ddfc43274e,
com.unity.ml-agents.settings: {fileID: 11400000, guid: b9540ad82945942dd852207c48989240,
type: 2}
m_UseUCBPForAssetBundles: 0
4 changes: 2 additions & 2 deletions ml-agents-envs/mlagents_envs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Version of the library that will be used to upload to pypi
__version__ = "1.1.0"
__version__ = "1.2.0.dev0"

# Git tag that will be checked to determine whether to trigger upload to pypi
__release_tag__ = "release_22"
__release_tag__ = None
4 changes: 2 additions & 2 deletions ml-agents/mlagents/trainers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Version of the library that will be used to upload to pypi
__version__ = "1.1.0"
__version__ = "1.2.0.dev0"

# Git tag that will be checked to determine whether to trigger upload to pypi
__release_tag__ = "release_22"
__release_tag__ = None
4 changes: 2 additions & 2 deletions utils/validate_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

def _escape_non_none(s: Optional[str]) -> str:
"""
Returns s escaped in quotes if it is non-None, else "None"
Returns s escaped in quotes if it is non-None, els e "None"
:param s:
:return:
"""
Expand Down Expand Up @@ -180,7 +180,7 @@ def print_release_tag_commands(
print(f"Updating C# package to version {args.csharp_version}")
if args.csharp_extensions_version:
print(
f"Updating C# extensions package to version {args.csharp_extensions_version}-exp.1"
f"Updating C# extensions package to version {args.csharp_extensions_version}-preview"
)
set_version(
args.python_version,
Expand Down

0 comments on commit b992273

Please sign in to comment.