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 76f4602 commit e8f4a6eCopy full SHA for e8f4a6e
.github/workflows/build.yml
@@ -208,6 +208,9 @@ jobs:
208
# Get Python version.
209
IMPL=cp$(python -c "import sys; print('{0}{1}'.format(*sys.version_info[:2]))")
210
211
+ # Install data packages.
212
+ python -m pip install ./data_packages/*.whl
213
+
214
# Install basemap wheel matching current Python version.
215
WHEEL=$(find ./wheels -name "*-${IMPL}-${IMPL}*.whl" | head -1)
216
if [ -n "${WHEEL}" ]; then
@@ -217,9 +220,6 @@ jobs:
217
220
exit 1
218
221
fi
219
222
- # Install basemap data packages.
- python -m pip install ./data_packages/*.whl
-
223
- name: Install docs requirements
224
run: |
225
python -m pip install -r dep/requirements-doc.txt
0 commit comments