summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerwincoumans <erwincoumans@google.com>2020-08-13 19:44:22 -0700
committerGitHub <noreply@github.com>2020-08-13 19:44:22 -0700
commit93624761c606f020d2aae96d2086af4bb668e529 (patch)
treed22be9319e7b07806314b9f3d04aa783cf0a2ff4
parent0993c9a782f2e00bee5bb743dbeb0db0d007b31d (diff)
parentbac8b6305dd73a6deec327f3a0f89bb51e5c6321 (diff)
downloadbullet3-93624761c606f020d2aae96d2086af4bb668e529.tar.gz
Merge pull request #2988 from erwincoumans/master
bump up pybullet version to 2.8.7
-rw-r--r--examples/pybullet/pybullet.c4
-rw-r--r--setup.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/pybullet/pybullet.c b/examples/pybullet/pybullet.c
index d9c5beac7..1f8d006f9 100644
--- a/examples/pybullet/pybullet.c
+++ b/examples/pybullet/pybullet.c
@@ -11958,8 +11958,8 @@ static PyObject* pybullet_calculateJacobian(PyObject* self, PyObject* args, PyOb
if (dofCount)
{
int byteSizeDofCount = sizeof(double) * dofCount;
- double* linearJacobian = (double*)malloc(3 * byteSizeDofCount);
- double* angularJacobian = (double*)malloc(3 * byteSizeDofCount);
+ linearJacobian = (double*)malloc(3 * byteSizeDofCount);
+ angularJacobian = (double*)malloc(3 * byteSizeDofCount);
b3GetStatusJacobian(statusHandle,
NULL,
linearJacobian,
diff --git a/setup.py b/setup.py
index 3862c12b9..9f3730240 100644
--- a/setup.py
+++ b/setup.py
@@ -501,7 +501,7 @@ if 'BT_USE_EGL' in EGL_CXX_FLAGS:
setup(
name='pybullet',
- version='2.8.6',
+ version='2.8.7',
description=
'Official Python Interface for the Bullet Physics SDK specialized for Robotics Simulation and Reinforcement Learning',
long_description=