bump up pybullet version

This commit is contained in:
Erwin Coumans
2018-08-09 16:53:11 -07:00
parent 15e831ab99
commit 90e08b41a5
2 changed files with 5 additions and 5 deletions

View File

@@ -8529,10 +8529,10 @@ static PyObject* pybullet_calculateInverseKinematics(PyObject* self,
{ {
int szInBytes = sizeof(double) * szJointDamping; int szInBytes = sizeof(double) * szJointDamping;
int i; int i;
if (szJointDamping != dofCount) //if (szJointDamping != dofCount)
{ //{
printf("calculateInverseKinematics: the size of input joint damping values should be equal to the number of degrees of freedom, ignoring the additonal values."); // printf("calculateInverseKinematics: the size of input joint damping values should be equal to the number of degrees of freedom, ignoring the additonal values.");
} //}
jointDamping = (double*)malloc(szInBytes); jointDamping = (double*)malloc(szInBytes);
for (i = 0; i < szJointDamping; i++) for (i = 0; i < szJointDamping; i++)
{ {

View File

@@ -453,7 +453,7 @@ print("-----")
setup( setup(
name = 'pybullet', name = 'pybullet',
version='2.1.1', version='2.1.2',
description='Official Python Interface for the Bullet Physics SDK specialized for Robotics Simulation and Reinforcement Learning', 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.', 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', url='https://github.com/bulletphysics/bullet3',