Skip to content

Commit c78af93

Browse files
committed
Use --prefer-binary with pip in test jobs
1 parent dab071a commit c78af93

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,8 @@ jobs:
254254
-
255255
name: Install package
256256
run: |
257-
pip install "basemap-data == 1.3.0rc1"
258-
pip install ${{ env.PKGDIR }}/dist/*-manylinux1*.whl
257+
pip install --prefer-binary "basemap-data == 1.3.0rc1"
258+
pip install --prefer-binary ${{ env.PKGDIR }}/dist/*-manylinux1*.whl
259259
-
260260
name: Test package
261261
run: |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ jobs:
195195
-
196196
name: Install package
197197
run: |
198-
pip install "basemap-data == 1.3.0rc1"
199-
pip install (Get-Item ${{ env.PKGDIR }}/dist/*-win*.whl)
198+
pip install --prefer-binary "basemap-data == 1.3.0rc1"
199+
pip install --prefer-binary (Get-Item ${{ env.PKGDIR }}/dist/*-win*.whl)
200200
-
201201
name: Test package
202202
run: |

0 commit comments

Comments
 (0)