From b44fe609e49234e71b2c566a6df576fe69b4850d Mon Sep 17 00:00:00 2001 From: Saran Tunyasuvunakool Date: Wed, 16 Mar 2022 09:24:52 -0700 Subject: [PATCH] Remove a stray print statement in __init__.py. Also declare a dependency of libglewegl.so on libOpenGL.so. PiperOrigin-RevId: 435071069 Change-Id: Ie1c7aedcb37523c4829b129d06738e570c5bc1a5 --- python/README.md | 4 ++-- python/mujoco/__init__.py | 1 - python/setup.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/python/README.md b/python/README.md index 4b450b98..df94185b 100644 --- a/python/README.md +++ b/python/README.md @@ -47,8 +47,8 @@ further detail on the package's API. The `major.minor.micro` portion of the version number matches the version of MuJoCo that the bindings provide. Optionally, if we release updates to the -Python bindings themselves that target the same version of MuJoCo, a `-rN` -suffix is added, for example `2.1.2-r2` represents the second update to the +Python bindings themselves that target the same version of MuJoCo, a `.postN` +suffix is added, for example `2.1.2.post2` represents the second update to the bindings for MuJoCo 2.1.2. ## License and Disclaimer diff --git a/python/mujoco/__init__.py b/python/mujoco/__init__.py index ab47837e..be44c156 100644 --- a/python/mujoco/__init__.py +++ b/python/mujoco/__init__.py @@ -27,7 +27,6 @@ _MUJOCO_GL = os.environ.get('MUJOCO_GL', '').lower().strip() _MUJOCO_GL_IS_VALID = True _SYSTEM = platform.system() -print(_MUJOCO_GL) if _SYSTEM == 'Linux': libglew_name = None if _MUJOCO_GL in _MUJOCO_GL_ENABLE + ('glfw', 'glx'): diff --git a/python/setup.py b/python/setup.py index 473dc72e..4cab1805 100644 --- a/python/setup.py +++ b/python/setup.py @@ -30,7 +30,7 @@ from setuptools import find_packages from setuptools import setup from setuptools.command import build_ext -__version__ = '2.1.2' +__version__ = '2.1.2.post1' MUJOCO_CMAKE = 'MUJOCO_CMAKE' MUJOCO_CMAKE_ARGS = 'MUJOCO_CMAKE_ARGS'