Skip to content

Commit

Permalink
Bump up the version.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 576139552
Change-Id: Ib8d203fa327d2a26db323564a3a842d3cec42125
  • Loading branch information
josechenf authored and Copybara-Service committed Oct 24, 2023
1 parent 4725cc1 commit a0bca1c
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 12 deletions.
2 changes: 1 addition & 1 deletion cpp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def _parse_line(s):
name="dm_robotics-controllers",
package_dir={"dm_robotics.controllers": ""},
packages=["dm_robotics.controllers"],
version="0.5.0",
version="0.6.0",
license="Apache 2.0",
author="DeepMind",
description="Python bindings for dm_robotics/cpp/controllers",
Expand Down
12 changes: 8 additions & 4 deletions py/agentflow/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,21 @@ def _parse_line(s):
"dm_robotics.agentflow.rendering",
"dm_robotics.agentflow.subtasks",
],
version="0.5.0",
version="0.6.0",
license="Apache 2.0",
author="DeepMind",
description="Tools for single-embodiment, multiple-task, Reinforcement Learning",
description=(
"Tools for single-embodiment, multiple-task, Reinforcement Learning"
),
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/deepmind/dm_robotics/tree/main/py/agentflow",
python_requires=">=3.7, <3.11",
setup_requires=["wheel >= 0.31.0"],
install_requires=(_get_requirements("requirements.txt") +
_get_requirements("requirements_external.txt")),
install_requires=(
_get_requirements("requirements.txt")
+ _get_requirements("requirements_external.txt")
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
Expand Down
14 changes: 10 additions & 4 deletions py/geometry/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def _get_requirements(requirements_file): # pylint: disable=g-doc-args
Lines starting with -r will be ignored. If the requirements are split across
multiple files, call this function multiple times instead and sum the results.
"""

def line_should_be_included(line):
return line and not line.startswith("-r")

Expand All @@ -44,17 +45,22 @@ def _parse_line(s):
name="dm_robotics-geometry",
package_dir={"dm_robotics.geometry": ""},
packages=["dm_robotics.geometry"],
version="0.5.0",
version="0.6.0",
license="Apache 2.0",
author="DeepMind",
description="This library provides primitives for dealing with scene and robot geometry",
description=(
"This library provides primitives for dealing with scene and robot"
" geometry"
),
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/deepmind/dm_robotics/tree/main/py/geometry",
python_requires=">=3.7, <3.11",
setup_requires=["wheel >= 0.31.0"],
install_requires=(_get_requirements("requirements.txt") +
_get_requirements("requirements_external.txt")),
install_requires=(
_get_requirements("requirements.txt")
+ _get_requirements("requirements_external.txt")
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
Expand Down
2 changes: 1 addition & 1 deletion py/manipulation/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def _parse_line(s):
"dm_robotics.manipulation.props.utils",
"dm_robotics.manipulation.standard_cell",
],
version="0.5.0",
version="0.6.0",
license="Apache 2.0",
author="DeepMind",
description="Parametrically defined mesh objects",
Expand Down
2 changes: 1 addition & 1 deletion py/moma/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _parse_line(s):
"dm_robotics.moma.models.end_effectors.wrist_sensors",
"dm_robotics.moma.models.robots.robot_arms",
],
version="0.5.0",
version="0.6.0",
license="Apache 2.0",
author="DeepMind",
description="Tools for authoring robotic manipulation tasks.",
Expand Down
2 changes: 1 addition & 1 deletion py/transformations/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def _parse_line(s):
name="dm_robotics-transformations",
package_dir={"dm_robotics.transformations": ""},
packages=["dm_robotics.transformations"],
version="0.5.0",
version="0.6.0",
license="Apache 2.0",
author="DeepMind",
description="A library for Rigid Body Transformations",
Expand Down

0 comments on commit a0bca1c

Please sign in to comment.