Skip to content

Commit d18e832

Browse files
committed
Install rasterio through conda-forge (for windows)
1 parent 996c900 commit d18e832

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ui-tests.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-latest, macos-latest]
11+
os: [ubuntu-latest, macos-latest, windows-latest]
1212
python: [3.8]
1313
fail-fast: false
1414

@@ -18,6 +18,15 @@ jobs:
1818
- name: Base Setup
1919
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
2020

21+
- name: Setup conda
22+
uses: conda-incubator/setup-miniconda@v2
23+
with:
24+
mamba-version: "*"
25+
channels: conda-forge
26+
27+
- name: Mamba install rasterio
28+
run: mamba install python=3.8 rasterio
29+
2130
- name: Install xarray-leaflet
2231
run: |
2332
python -m pip install --upgrade jupyterlab~=3.0

0 commit comments

Comments
 (0)