Skip to content

Commit f23adf5

Browse files
authored
fix: typo in ci, variable name python_version (#74)
* fix: typo in variable name python_version (dev branch) * fix: typo in variable name python_version (main branch)
1 parent 757b4b6 commit f23adf5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
- name: "Base Setup: Node + Python"
66
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
77
with:
8-
python_version: ${{ inputs.python-version }}
8+
python_version: ${{ inputs.python_version }}
99

1010
- name: Install Python dependencies
1111
run: python -m pip install -r requirements.txt

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python_version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1616
steps:
1717
- uses: actions/checkout@v4
1818
- uses: ./.github/actions/setup
@@ -21,7 +21,7 @@ jobs:
2121
- uses: ./.github/actions/test
2222

2323
- name: Upload results to Codecov
24-
if: matrix.python-version == '3.11'
24+
if: matrix.python_version == '3.11'
2525
uses: codecov/codecov-action@v4
2626
with:
2727
file: coverage.xml

0 commit comments

Comments
 (0)