Skip to content

Commit

Permalink
Bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasplappert committed Nov 19, 2021
1 parent fb4babe commit f1312cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions mujoco_py/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,10 +331,10 @@ def _build_impl(self):
break
if available_c_compiler is None:
raise RuntimeError(
'Could not find GCC executable.\n\n'
'HINT: On OS X, install GCC with '
'`brew install gcc`. or '
'`port install gcc`.')
'Could not find supported GCC executable.\n\n'
'HINT: On OS X, install GCC 9.x with '
'`brew install gcc@9`. or '
'`port install gcc9`.')
os.environ['CC'] = available_c_compiler

so_file_path = super()._build_impl()
Expand Down
2 changes: 1 addition & 1 deletion mujoco_py/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__all__ = ['__version__', 'get_version']

version_info = (2, 0, 2, 13)
version_info = (2, 1, 2, 14)
# format:
# ('mujoco_major', 'mujoco_minor', 'mujoco_py_major', 'mujoco_py_minor')

Expand Down

0 comments on commit f1312cc

Please sign in to comment.