From 463cbf93dedae9ceb5b4450cfe2b47bd440472c8 Mon Sep 17 00:00:00 2001 From: Erwin Coumans Date: Sun, 2 Apr 2017 23:12:02 -0700 Subject: [PATCH] minor fix in setup.py, disable udp/tcp for now (not setup yet) --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index d633e1358..adebd9a05 100644 --- a/setup.py +++ b/setup.py @@ -19,8 +19,8 @@ print(platform) CXX_FLAGS = '' CXX_FLAGS += '-DGWEN_COMPILE_STATIC ' -CXX_FLAGS += '-DBT_ENABLE_ENET ' -CXX_FLAGS += '-DBT_ENABLE_CLSOCKET ' +#CXX_FLAGS += '-DBT_ENABLE_ENET ' +#CXX_FLAGS += '-DBT_ENABLE_CLSOCKET ' # libraries += [current_python] @@ -367,7 +367,7 @@ elif _platform == "darwin": setup( name = 'pybullet', - version='0.1.0', + version='0.1.1', description='Official Python Interface for the Bullet Physics SDK Robotics Simulator', long_description='pybullet is an easy to use Python module for physics simulation, robotics and machine 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',