Skip to content

Commit

Permalink
Update Python
Browse files Browse the repository at this point in the history
  • Loading branch information
janheinrichmerker authored Oct 14, 2024
1 parent 5bbe080 commit bbe2d5e
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ jobs:
strategy:
matrix:
python:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Check-out
Expand All @@ -30,7 +32,7 @@ jobs:
run: twine check dist/*
- name: πŸ“€ Upload Python wheels
uses: actions/upload-artifact@v4
if: matrix.python == '3.9'
if: matrix.python == '3.12'
with:
name: wheels
path: dist
Expand All @@ -39,9 +41,11 @@ jobs:
strategy:
matrix:
python:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Check-out
Expand All @@ -61,9 +65,11 @@ jobs:
strategy:
matrix:
python:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Check-out
Expand All @@ -83,8 +89,11 @@ jobs:
strategy:
matrix:
python:
- '3.7'
- '3.9'
#- '3.8'
#- '3.9'
#- '3.10'
#- '3.11'
- '3.12'
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Check-out
Expand All @@ -104,7 +113,7 @@ jobs:
run: pytest --cov --cov-report=xml chatnoir_pyterrier tests examples
- name: πŸ“€ Upload coverage to Codecov
uses: codecov/codecov-action@v4
if: matrix.python == '3.9'
if: matrix.python == '3.12'
with:
token: ${{ secrets.CODECOV_TOKEN }}
python-publish:
Expand Down

0 comments on commit bbe2d5e

Please sign in to comment.