Skip to content

Commit

Permalink
CI: Use nightly numpy, pandas, scipy builds
Browse files Browse the repository at this point in the history
  • Loading branch information
snowman2 committed Feb 26, 2021
1 parent 0b9d65f commit 1269190
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:

test_latest:
needs: linting
name: Test latest xarray, rasterio, pyproj dependencies
name: Test dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -92,11 +92,22 @@ jobs:
- name: Install Env
shell: bash
run: |
conda create -n test python=3.8 proj libgdal cython pandas scipy netcdf4 dask pandoc
conda create -n test python=3.8 proj libgdal cython netcdf4
source activate test
python -m pip install git+https://github.com/mapbox/rasterio.git@master
python -m pip install git+https://github.com/pyproj4/pyproj.git@master
python -m pip install git+https://github.com/pydata/xarray.git@master
python -m pip install \
--extra-index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple/ \
--trusted-host pypi.anaconda.org
--no-deps --pre --upgrade \
numpy \
pandas \
scipy;
python -m pip install \
--no-deps --upgrade \
git+https://github.com/dask/dask.git@master \
git+https://github.com/dask/distributed.git@master \
git+https://github.com/mapbox/rasterio.git@master \
git+https://github.com/pyproj4/pyproj.git@master \
git+https://github.com/pydata/xarray.git@master;
python -m pip install -e .[all]
- name: Check and Log Environment
Expand Down

0 comments on commit 1269190

Please sign in to comment.