Skip to content

Commit

Permalink
[setup] Adjust macOS pip dependencies (RobotLocomotion#21845)
Browse files Browse the repository at this point in the history
- Revert "Pin mac binary numpy version to 2.0.1".
- Disable Python 3.11 wheel builds.
  • Loading branch information
jwnimmer-tri authored Aug 26, 2024
1 parent bf10a3a commit 554a504
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion setup/mac/binary_distribution/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
ipywidgets
matplotlib
notebook
numpy < 2.1
Pillow
pydot
PyYAML
2 changes: 1 addition & 1 deletion tools/wheel/image/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# Required python packages that will be pip installed along with pydrake
python_required = [
'matplotlib',
'numpy < 2.1',
'numpy',
'pydot',
'PyYAML',
]
Expand Down
4 changes: 3 additions & 1 deletion tools/wheel/wheel_builder/macos.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
# default, all targets are built, but the user may down-select from this set.
# On macOS (unlike Linux), this is just the set of Python versions targeted.
python_targets = (
PythonTarget(3, 11),
# TODO(jwnimmer-tri) Python 3.11 is disabled until NumPy ships PyPI wheels
# for that Python version that are installable on macOS 13.
# PythonTarget(3, 11),
PythonTarget(3, 12),
)

Expand Down

0 comments on commit 554a504

Please sign in to comment.