Skip to content

Commit e8f4a6e

Browse files
committed
Ensure data packages are installed first in CI docs job
1 parent 76f4602 commit e8f4a6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,9 @@ jobs:
208208
# Get Python version.
209209
IMPL=cp$(python -c "import sys; print('{0}{1}'.format(*sys.version_info[:2]))")
210210
211+
# Install data packages.
212+
python -m pip install ./data_packages/*.whl
213+
211214
# Install basemap wheel matching current Python version.
212215
WHEEL=$(find ./wheels -name "*-${IMPL}-${IMPL}*.whl" | head -1)
213216
if [ -n "${WHEEL}" ]; then
@@ -217,9 +220,6 @@ jobs:
217220
exit 1
218221
fi
219222
220-
# Install basemap data packages.
221-
python -m pip install ./data_packages/*.whl
222-
223223
- name: Install docs requirements
224224
run: |
225225
python -m pip install -r dep/requirements-doc.txt

0 commit comments

Comments
 (0)