Skip to content

Commit 2dccf02

Browse files
committed
Move download basemap sdist step right before extraction
1 parent fef1d4d commit 2dccf02

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,6 @@ jobs:
8080
with:
8181
python-version: "3.9"
8282

83-
- name: Download basemap sdist
84-
uses: actions/download-artifact@v4
85-
with:
86-
name: basemap-sdist
87-
path: ./sdist/
88-
8983
- name: Download data packages
9084
uses: actions/download-artifact@v4
9185
with:
@@ -129,6 +123,12 @@ jobs:
129123
Write-Host "Trying to import basemap_data..."
130124
python -c "import mpl_toolkits.basemap_data; print('mpl_toolkits.basemap_data imported successfully')"
131125
126+
- name: Download basemap sdist
127+
uses: actions/download-artifact@v4
128+
with:
129+
name: basemap-sdist
130+
path: ./sdist/
131+
132132
- name: Extract sdist (Linux/macOS)
133133
if: runner.os != 'Windows'
134134
shell: bash

0 commit comments

Comments
 (0)