Skip to content

Commit c6fc2aa

Browse files
authored
Update Python versions in CI workflow
1 parent 42195ef commit c6fc2aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ "ubuntu-latest" ]
13-
python-version: ['3.8', '3.9', '3.10', '3.11']
13+
python-version: ['3.9', '3.12', '3.14']
1414
runs-on: ${{ matrix.os }}
1515
steps:
1616
- uses: actions/checkout@v3
@@ -37,13 +37,13 @@ jobs:
3737
- name: Test with pytest
3838
run: poetry run pytest --cov=flagship --cov-report=xml ./tests/
3939
- name: Upload coverage
40-
if: matrix.python-version == 3.8
40+
if: matrix.python-version == 3.9
4141
uses: codecov/codecov-action@v3
4242
with:
4343
file: ./coverage.xml
4444
fail_ci_if_error: false
4545
- name: Build and publish library
46-
if: matrix.python-version == 3.8
46+
if: matrix.python-version == 3.9
4747
run: |
4848
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
4949
poetry publish --build

0 commit comments

Comments
 (0)