Skip to content

Commit 800733c

Browse files
committed
ci: run separate runners for each python version
1 parent e852224 commit 800733c

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/release-please.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,15 @@ jobs:
9595
name: Building conda package
9696
needs: ["documentation-test", "continuous-integration"]
9797
runs-on: ubuntu-latest
98-
98+
strategy:
99+
fail-fast: false
100+
matrix:
101+
python-version: ${{ fromJSON(vars.PYTHON_VERSIONS)}}
99102
steps:
100103
- uses: conda-incubator/setup-miniconda@v3
101104
with:
102105
auto-update-conda: true
103-
106+
python-version: ${{ matrix.python-version }}
104107
- uses: actions/checkout@v4
105108
- name: update submodules
106109
# shell: bash -l {0}

conda/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ build:
1313

1414
requirements:
1515
host:
16-
- python >=3.8
16+
- python
1717
- setuptools
1818
- pip
1919
run:
20-
- python >=3.8
20+
- python
2121
- numpy >=1.18
2222
- pandas
2323
- scipy

0 commit comments

Comments
 (0)