Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e4eb200

Browse files
committed
Skip tests for py311-win32 due to missing pyproj wheel
1 parent 65fbaae commit e4eb200

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/basemap-for-windows.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,15 @@ jobs:
233233
name: Install package
234234
run: |
235235
pip install --prefer-binary (Get-Item ${{ env.PKGDIR }}/dist/*-win*.whl)
236+
# We need to skip Py311 x86 because of missing pyproj wheels.
237+
if: matrix.arch != 'x86' || matrix.python-version != '3.11'
236238
-
237239
name: Test package
238240
run: |
239241
python -c "from mpl_toolkits.basemap import Basemap"
240242
python -c "from mpl_toolkits.basemap import cm"
243+
# We need to skip Py311 x86 because of missing pyproj wheels.
244+
if: matrix.arch != 'x86' || matrix.python-version != '3.11'
241245

242246
upload:
243247
strategy:

0 commit comments

Comments
 (0)