diff --git a/MANIFEST.in b/MANIFEST.in index 0d31466ce..1c978abbd 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -8,7 +8,7 @@ recursive-include src *.hpp recursive-include examples/pybullet/gym *.* include examples/ThirdPartyLibs/enet/unix.c include examples/OpenGLWindow/X11OpenGLWindow.cpp -include examples/ThirdPartyLibs/Glew/glew.c +recursive-include examples/ThirdPartyLibs/glad *.* include examples/ThirdPartyLibs/enet/win32.c include examples/OpenGLWindow/Win32Window.cpp include examples/OpenGLWindow/Win32OpenGLWindow.cpp diff --git a/examples/pybullet/gym/pybullet_data/random_urdfs.zip b/examples/pybullet/gym/pybullet_data/random_urdfs.zip deleted file mode 100644 index 58ed00628..000000000 Binary files a/examples/pybullet/gym/pybullet_data/random_urdfs.zip and /dev/null differ diff --git a/setup.py b/setup.py index 514d66261..664059460 100644 --- a/setup.py +++ b/setup.py @@ -446,7 +446,7 @@ print("-----") setup( name = 'pybullet', - version='1.9.0', + version='1.9.1', description='Official Python Interface for the Bullet Physics SDK specialized for Robotics Simulation and Reinforcement Learning', long_description='pybullet is an easy to use Python module for physics simulation, robotics and deep reinforcement learning based on the Bullet Physics SDK. With pybullet you can load articulated bodies from URDF, SDF and other file formats. pybullet provides forward dynamics simulation, inverse dynamics computation, forward and inverse kinematics and collision detection and ray intersection queries. Aside from physics simulation, pybullet supports to rendering, with a CPU renderer and OpenGL visualization and support for virtual reality headsets.', url='https://github.com/bulletphysics/bullet3',