Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65fbaae commit e4eb200Copy full SHA for e4eb200
.github/workflows/basemap-for-windows.yml
@@ -233,11 +233,15 @@ jobs:
233
name: Install package
234
run: |
235
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'
238
-
239
name: Test package
240
241
python -c "from mpl_toolkits.basemap import Basemap"
242
python -c "from mpl_toolkits.basemap import cm"
243
244
245
246
upload:
247
strategy:
0 commit comments