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 0550bc7 commit c63f7cbCopy full SHA for c63f7cb
.github/workflows/tests-conda.yml
@@ -26,6 +26,11 @@ jobs:
26
python: ["3.10", "3.11"]
27
env: ["environment.yml"]
28
include:
29
+ # environment with lower versions of optional dependencies
30
+ - python: "3.10"
31
+ extra: |
32
+ pandas=1.5
33
+ geopandas=0.12
34
# minimal environment without optional dependencies
35
- os: "ubuntu-latest"
36
python: "3.9"
@@ -44,7 +49,9 @@ jobs:
44
49
uses: mamba-org/provision-with-micromamba@main
45
50
with:
46
51
environment-file: ci/${{ matrix.env }}
47
- extra-specs: python=${{ matrix.python }}
52
+ extra-specs: |
53
+ python=${{ matrix.python }}
54
+ ${{ matrix.extra }}
48
55
cache-env: true
56
57
- name: Set environment variables (Windows)
0 commit comments