Skip to content

Commit 774f461

Browse files
saran-tcopybara-github
authored andcommitted
Bump version number to 1.0.10.
PiperOrigin-RevId: 507794860 Change-Id: I4a8a98686e0aedbec2255df5cab9b6030ac88c38
1 parent bc4b064 commit 774f461

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

dm_control/mujoco/tutorial.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
" 'Go to the Runtime menu and select Choose runtime type.')\n",
7878
"\n",
7979
"print('Installing dm_control...')\n",
80-
"!pip install -q dm_control\u003e=1.0.9\n",
80+
"!pip install -q dm_control\u003e=1.0.10\n",
8181
"\n",
8282
"# Configure dm_control to use the EGL rendering backend (requires GPU)\n",
8383
"%env MUJOCO_GL=egl\n",

requirements.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
absl-py==1.3.0
2-
dm-env==1.5
3-
dm-tree==0.1.7
1+
absl-py==1.4.0
2+
dm-env==1.6
3+
dm-tree==0.1.8
44
glfw==1.12.0
5-
h5py==3.7.0
5+
h5py==3.8.0
66
labmaze==1.0.6
7-
lxml==4.9.1
7+
lxml==4.9.2
88
mock==4.0.3
9-
mujoco==2.3.1.post1
9+
mujoco==2.3.2
1010
nose==1.3.7
1111
nose-xunitmp==0.4.1
1212
numpy==1.21.6; python_version < '3.8'
13-
numpy==1.23.5; python_version >= '3.8'
14-
Pillow==9.3.0
13+
numpy==1.24.2; python_version >= '3.8'
14+
Pillow==9.4.0
1515
protobuf==3.19.4 # TensorFlow requires protobuf<3.20 (b/182876485)
1616
pyopengl==3.1.6
1717
pyparsing==3.0.9
18-
requests==2.28.1
18+
requests==2.28.2
1919
scipy==1.7.3; python_version < '3.8'
20-
scipy==1.9.3; python_version >= '3.8'
21-
setuptools==65.6.3
20+
scipy==1.10.0; python_version >= '3.8'
21+
setuptools==67.2.0
2222
tqdm==4.64.1

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515

1616
"""Install script for setuptools."""
1717

18-
from distutils import cmd
19-
from distutils import log
2018
import fnmatch
19+
import logging
2120
import os
2221
import platform
2322
import subprocess
2423
import sys
2524

2625
import mujoco
26+
import setuptools
2727
from setuptools import find_packages
2828
from setuptools import setup
2929
from setuptools.command import install
@@ -69,7 +69,7 @@ def _finalize_mjbindings_options(cmd_instance):
6969
cmd_instance.header_paths = ' '.join(header_paths)
7070

7171

72-
class BuildMJBindingsCommand(cmd.Command):
72+
class BuildMJBindingsCommand(setuptools.Command):
7373
"""Runs `autowrap.py` to generate the low-level ctypes bindings for MuJoCo."""
7474
description = __doc__
7575
user_options = [
@@ -101,7 +101,7 @@ def run(self):
101101
'--header_paths={}'.format(self.header_paths),
102102
'--output_dir={}'.format(output_dir)
103103
]
104-
self.announce('Running command: {}'.format(command), level=log.DEBUG)
104+
self.announce('Running command: {}'.format(command), level=logging.DEBUG)
105105
try:
106106
# Prepend the current directory to $PYTHONPATH so that internal imports
107107
# in `autowrap` can succeed before we've installed anything.
@@ -173,7 +173,7 @@ def is_excluded(s):
173173

174174
setup(
175175
name='dm_control',
176-
version='1.0.9',
176+
version='1.0.10',
177177
description='Continuous control environments and MuJoCo Python bindings.',
178178
long_description="""
179179
# `dm_control`: DeepMind Infrastructure for Physics-Based Simulation.
@@ -201,7 +201,7 @@ def is_excluded(s):
201201
'glfw',
202202
'labmaze',
203203
'lxml',
204-
'mujoco >= 2.3.1.post1',
204+
'mujoco >= 2.3.2',
205205
'numpy >= 1.9.0',
206206
'protobuf >= 3.19.4', # TensorFlow requires protobuf<3.20 (b/182876485)
207207
'pyopengl >= 3.1.4',

tutorial.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
" 'Go to the Runtime menu and select Choose runtime type.')\n",
7878
"\n",
7979
"print('Installing dm_control...')\n",
80-
"!pip install -q dm_control\u003e=1.0.9\n",
80+
"!pip install -q dm_control\u003e=1.0.10\n",
8181
"\n",
8282
"# Configure dm_control to use the EGL rendering backend (requires GPU)\n",
8383
"%env MUJOCO_GL=egl\n",

0 commit comments

Comments
 (0)