Skip to content

Commit ccbaf91

Browse files
saran-tcopybara-github
authored andcommitted
Bump version number to 1.0.13.
PiperOrigin-RevId: 542010549 Change-Id: Id7e3d134b3d66be40e6b11be0d44ad4fb867a191
1 parent 0991878 commit ccbaf91

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

dm_control/mujoco/tutorial.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"\"\"\")\n",
9494
"\n",
9595
"print('Installing dm_control...')\n",
96-
"!pip install -q dm_control\u003e=1.0.12\n",
96+
"!pip install -q dm_control\u003e=1.0.13\n",
9797
"\n",
9898
"# Configure dm_control to use the EGL rendering backend (requires GPU)\n",
9999
"%env MUJOCO_GL=egl\n",

requirements.txt

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@ absl-py==1.4.0
22
dm-env==1.6
33
dm-tree==0.1.8
44
glfw==1.12.0
5-
h5py==3.8.0
5+
h5py==3.8.0; python_version == '3.7'
6+
h5py==3.9.0; python_version >= '3.8'
67
labmaze==1.0.6
78
lxml==4.9.2
8-
mock==4.0.3
9-
mujoco==2.3.5
9+
mock==5.0.2
10+
mujoco==2.3.6
1011
nose==1.3.7
1112
nose-xunitmp==0.4.1
12-
numpy==1.21.6; python_version < '3.8'
13-
numpy==1.24.2; python_version >= '3.8'
13+
numpy==1.21.6; python_version == '3.7'
14+
numpy==1.24.3; python_version == '3.8'
15+
numpy==1.25.0; python_version >= '3.9'
1416
Pillow==9.5.0
1517
protobuf==3.19.4 # TensorFlow requires protobuf<3.20 (b/182876485)
16-
pyopengl==3.1.6
17-
pyparsing==3.0.9
18-
requests==2.28.2
19-
scipy==1.7.3; python_version < '3.8'
18+
pyopengl==3.1.7
19+
pyparsing==3.1.0
20+
requests==2.31.0
21+
scipy==1.7.3; python_version == '3.7'
2022
scipy==1.10.1; python_version >= '3.8'
21-
setuptools==67.7.0
23+
setuptools==68.0.0
2224
tqdm==4.65.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def is_excluded(s):
173173

174174
setup(
175175
name='dm_control',
176-
version='1.0.12',
176+
version='1.0.13',
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.5',
204+
'mujoco >= 2.3.6',
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
@@ -93,7 +93,7 @@
9393
"\"\"\")\n",
9494
"\n",
9595
"print('Installing dm_control...')\n",
96-
"!pip install -q dm_control\u003e=1.0.12\n",
96+
"!pip install -q dm_control\u003e=1.0.13\n",
9797
"\n",
9898
"# Configure dm_control to use the EGL rendering backend (requires GPU)\n",
9999
"%env MUJOCO_GL=egl\n",

0 commit comments

Comments
 (0)