File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,9 @@ jobs:
127
127
- os : ubuntu-24.04-arm
128
128
cibw_archs : " aarch64"
129
129
- os : windows-latest
130
- cibw_archs : " auto64"
130
+ cibw_archs : " AMD64"
131
+ - os : windows-11-arm
132
+ cibw_archs : " ARM64"
131
133
- os : macos-13
132
134
cibw_archs : " x86_64"
133
135
- os : macos-14
@@ -187,7 +189,7 @@ jobs:
187
189
CIBW_BUILD : " pp311-*"
188
190
CIBW_ARCHS : ${{ matrix.cibw_archs }}
189
191
CIBW_ENABLE : pypy
190
- if : matrix.cibw_archs != 'aarch64' && matrix.os != 'windows-latest'
192
+ if : matrix.cibw_archs != 'aarch64' && matrix.os != 'windows-latest' && matrix.os != 'windows-11-arm'
191
193
192
194
- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
193
195
with :
Original file line number Diff line number Diff line change @@ -86,6 +86,14 @@ local_scheme = "node-and-date"
86
86
parentdir_prefix_version = " matplotlib-"
87
87
fallback_version = " 0.0+UNKNOWN"
88
88
89
+ # FIXME: Remove this override once dependencies are available on PyPI.
90
+ [[tool .cibuildwheel .overrides ]]
91
+ select = " *-win_arm64"
92
+ before-test = """ \
93
+ pip install --pre \
94
+ --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
95
+ contourpy numpy"""
96
+
89
97
[tool .isort ]
90
98
known_pydata = " numpy, matplotlib.pyplot"
91
99
known_firstparty = " matplotlib,mpl_toolkits"
You can’t perform that action at this time.
0 commit comments