Skip to content

Commit

Permalink
fix: python version syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
rabii-chaarani committed Apr 10, 2024
1 parent 9476dd7 commit f263c71
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# commit_message: "style: style fixes by ruff and autoformatting by black"

continuous-integration:
name: Continuous integration ${{ matrix.os }} python ["3.9", "3.10", "3.11"]
name: Continuous integration ${{ matrix.os }} python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -34,7 +34,7 @@ jobs:
- uses: conda-incubator/setup-miniconda@v3

with:
python-version: ["3.9", "3.10", "3.11"]
python-version: ${{ matrix.python-version }}
- name: Installing dependencies
shell: bash -l {0}
run: |
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ["3.9", "3.10", "3.11"]
python-version: ${{ matrix.python-version }}

- uses: actions/checkout@v4
- name: update submodules
Expand All @@ -94,7 +94,7 @@ jobs:
- name: upload artifacts
uses: actions/upload-artifact@v4
with:
name: conda-${{ matrix.os }}-["3.9", "3.10", "3.11"]
name: conda-${{ matrix.os }}-${{ matrix.python-version }}
path: conda

make_sdist:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: conda-${{ matrix.os }}-["3.9", "3.10", "3.11"]
name: conda-${{ matrix.os }}-${{ matrix.python-version }}
path: conda
- uses: conda-incubator/setup-miniconda@v3
- name: upload all files to conda-forge
Expand Down

0 comments on commit f263c71

Please sign in to comment.