Skip to content

Commit

Permalink
update docker command/version, so pybullet wheels are compatible with…
Browse files Browse the repository at this point in the history
… numpy 2.0 and 1.0

(thanks to Antonin Raffin for the report)
  • Loading branch information
erwincoumans committed Jan 29, 2025
1 parent bda0036 commit 6c888f4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.26
3.27
1 change: 0 additions & 1 deletion examples/pybullet/gym/pybullet_envs/examples/testEnv.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ def test(args):
print("action space:")
sample = env.action_space.sample()
action = sample * 0.0
action = [0,0]#sample * 0.0

print("action=")
print(action)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ def _single_compile(obj):

setup(
name='pybullet',
version='3.2.5',
version='3.2.7',
description=
'Official Python Interface for the Bullet Physics SDK specialized for Robotics Simulation and Reinforcement Learning',
long_description=
Expand Down
3 changes: 3 additions & 0 deletions wheel.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/bin/bash
set -e -x

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


# Compile wheels
for PYBIN in /opt/python/*/bin; do
Expand Down

0 comments on commit 6c888f4

Please sign in to comment.