From 39edcf699c75f5ce557049c701d20ba0d2f60a4c Mon Sep 17 00:00:00 2001 From: erwincoumans Date: Tue, 10 Apr 2018 22:59:53 -0700 Subject: [PATCH] bump up pybullet version, add missing sdf file --- .../gym/pybullet_data/plane_stadium.sdf | 44 +++++++++++++++++++ setup.py | 2 +- 2 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 examples/pybullet/gym/pybullet_data/plane_stadium.sdf diff --git a/examples/pybullet/gym/pybullet_data/plane_stadium.sdf b/examples/pybullet/gym/pybullet_data/plane_stadium.sdf new file mode 100644 index 000000000..8d7152860 --- /dev/null +++ b/examples/pybullet/gym/pybullet_data/plane_stadium.sdf @@ -0,0 +1,44 @@ + + + 0 0 -9.8 + + 1 + 0 0 0 0 0 0 + + + 0 + + 0.166667 + 0 + 0 + 0.166667 + 0 + 0.166667 + + + + + + 0 0 1 + 100 100 + + + + + + + 1 1 1 + plane100.obj + + + + 1 1 1 1 + 1 1 1 1 + .5 .5 .5 1 + 0 0 0 0 + + + + + + diff --git a/setup.py b/setup.py index 4f1419039..1f3da854b 100644 --- a/setup.py +++ b/setup.py @@ -453,7 +453,7 @@ print("-----") setup( name = 'pybullet', - version='1.9.3', + version='1.9.4', 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',