Skip to content

Commit

Permalink
It's not enough to unpin trimesh
Browse files Browse the repository at this point in the history
because it leaves trimesh at the outdated version on the user's system, even if they update our package. Instead, I need to pin trimesh to the newest version, to force pip to update it for the user.
  • Loading branch information
hello-binit authored Aug 23, 2024
1 parent afaf199 commit 5b81cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
'inputs', 'drawnow', 'rplidar-roboticia', 'snakeviz', 'pyusb', 'SpeechRecognition', 'pixel-ring',
'click', 'cma', 'opencv-contrib-python', 'colorama', 'scikit-image', 'open3d', 'pyrealsense2', 'gitpython',
'xmltodict', 'filelock', 'pyaudio',
'pyglet == 1.4.10; python_version < "3.0"', 'trimesh', 'urchin', # urdfpy ==> urchin
'pyglet == 1.4.10; python_version < "3.0"', 'trimesh==4.4.7', 'urchin', # urdfpy ==> urchin
'pyyaml>=5.1', # required for yaml.FullLoader
]
)

0 comments on commit 5b81cc1

Please sign in to comment.