Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin llvm-openmp=11 when building wheels for macOS #648

Merged
merged 3 commits into from
Jun 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Changelog
=========

2.5.2 - UNRELEASED
2.5.2 - 2023-06-02
------------------

**Bug fix**
Expand All @@ -18,6 +18,7 @@ Changelog
**Other changes:**

- Remove dev dependency on ``dask_ml``.
- We now pin ``llvm-openmp=11`` when creating the wheel for macOS in line with what scikit-learn does.


2.5.1 - 2023-05-19
Expand Down
2 changes: 1 addition & 1 deletion build_tools/prepare_macos_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ else
CONDA_CHANNEL="conda-forge/osx-64"
fi

conda create -n build -c $CONDA_CHANNEL llvm-openmp
conda create -n build -c $CONDA_CHANNEL 'llvm-openmp=11'