Skip to content

Commit f1312cc

Browse files
Bump version for release
1 parent fb4babe commit f1312cc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

mujoco_py/builder.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -331,10 +331,10 @@ def _build_impl(self):
331331
break
332332
if available_c_compiler is None:
333333
raise RuntimeError(
334-
'Could not find GCC executable.\n\n'
335-
'HINT: On OS X, install GCC with '
336-
'`brew install gcc`. or '
337-
'`port install gcc`.')
334+
'Could not find supported GCC executable.\n\n'
335+
'HINT: On OS X, install GCC 9.x with '
336+
'`brew install gcc@9`. or '
337+
'`port install gcc9`.')
338338
os.environ['CC'] = available_c_compiler
339339

340340
so_file_path = super()._build_impl()

mujoco_py/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__all__ = ['__version__', 'get_version']
22

3-
version_info = (2, 0, 2, 13)
3+
version_info = (2, 1, 2, 14)
44
# format:
55
# ('mujoco_major', 'mujoco_minor', 'mujoco_py_major', 'mujoco_py_minor')
66

0 commit comments

Comments
 (0)