Skip to content

Commit 6c888f4

Browse files
committed
update docker command/version, so pybullet wheels are compatible with numpy 2.0 and 1.0
(thanks to Antonin Raffin for the report)
1 parent bda0036 commit 6c888f4

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.26
1+
3.27

examples/pybullet/gym/pybullet_envs/examples/testEnv.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def test(args):
4444
print("action space:")
4545
sample = env.action_space.sample()
4646
action = sample * 0.0
47-
action = [0,0]#sample * 0.0
4847

4948
print("action=")
5049
print(action)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ def _single_compile(obj):
505505

506506
setup(
507507
name='pybullet',
508-
version='3.2.5',
508+
version='3.2.7',
509509
description=
510510
'Official Python Interface for the Bullet Physics SDK specialized for Robotics Simulation and Reinforcement Learning',
511511
long_description=

wheel.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/bin/bash
22
set -e -x
33

4+
# use this docker command
5+
# sudo docker run -it -v $(pwd):/io quay.io/pypa/manylinux2014_x86_64
6+
47

58
# Compile wheels
69
for PYBIN in /opt/python/*/bin; do

0 commit comments

Comments
 (0)