8000 Run delvewheel on Windows for wheels by QuLogic · Pull Request #24724 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Run delvewheel on Windows for wheels #24724

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

Merged
merged 1 commit into from
Dec 20, 2022
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
5 changes: 5 additions & 0 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ jobs:
env:
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
MACOSX_DEPLOYMENT_TARGET: "10.12"
CIBW_BEFORE_BUILD_WINDOWS: >-
pip install certifi delvewheel oldest-supported-numpy &&
git clean -fxd build
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: >-
delvewheel repair -w {dest_dir} {wheel}
strategy:
matrix:
os: [ubuntu-20.04, windows-latest, macos-11]
Expand Down
5 changes: 5 additions & 0 deletions doc/api/next_api_changes/development/24724-ES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Windows wheel runtime bundling
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Wheels built for Windows now bundle the MSVC runtime DLL ``msvcp140.dll``. This
enables importing Matplotlib on systems that do not have the runtime installed.
0