Skip to content

Commit 5037fd2

Browse files
DeepMindcopybara-github
authored andcommitted
Update dm_control to v1.0.25 following the MuJoCo v3.2.5 release.
Also update to new minor versions for packages with updates. Python requirement set to 3.10 due to scipy update. Packages with new major versions, not updated to avoid potential breakages: glfw, numpy, pillow, protobuf PiperOrigin-RevId: 693379887 Change-Id: I67431d4c687d3408d0fda33685ac1b19a3310d54
1 parent d25bb88 commit 5037fd2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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.24\n",
96+
"!pip install -q dm_control\u003e=1.0.25\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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ h5py==3.12.1
66
labmaze==1.0.6
77
lxml==5.3.0
88
mock==5.1.0
9-
mujoco==3.2.4
9+
mujoco==3.2.5
1010
nose==1.3.7
1111
nose-xunitmp==0.4.1
1212
numpy==1.26.4; python_version >= '3.9'
@@ -15,6 +15,6 @@ protobuf==3.19.4 # TensorFlow requires protobuf<3.20 (b/182876485)
1515
pyopengl==3.1.7
1616
pyparsing==3.2.0
1717
requests==2.32.3
18-
scipy==1.13.1; python_version >= '3.9'
19-
setuptools==70.0.0
20-
tqdm==4.66.5
18+
scipy==1.14.1; python_version >= '3.10'
19+
setuptools==70.3.0
20+
tqdm==4.66.6

setup.py

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

178178
setup(
179179
name='dm_control',
180-
version='1.0.24',
180+
version='1.0.25',
181181
description='Continuous control environments and MuJoCo Python bindings.',
182182
long_description="""
183183
# `dm_control`: DeepMind Infrastructure for Physics-Based Simulation.
@@ -205,7 +205,7 @@ def is_excluded(s):
205205
'glfw',
206206
'labmaze',
207207
'lxml',
208-
'mujoco >= 3.2.1',
208+
'mujoco >= 3.2.5',
209209
'numpy >= 1.9.0',
210210
'protobuf >= 3.19.4', # TensorFlow requires protobuf<3.20 (b/182876485)
211211
'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.24\n",
96+
"!pip install -q dm_control\u003e=1.0.25\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)