Skip to content

Commit

Permalink
Update Python versions on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mondeja authored Jan 14, 2025
1 parent c0d1df8 commit 0c895a1
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ jobs:
strategy:
matrix:
python-version:
- 3.7
- 3.8
- 3.9
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python v${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -41,11 +42,11 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Install Python v3.8
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: 3.8
python-version: '3.11'
- name: Build sdist
run: python setup.py sdist
- uses: actions/upload-artifact@v2
Expand All @@ -58,11 +59,11 @@ jobs:
name: Build wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Install Python v3.8
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: 3.8
python-version: '3.11'
- name: Install wheel
run: python -m pip install --upgrade wheel
- name: Build wheel
Expand Down Expand Up @@ -96,7 +97,7 @@ jobs:
- build-wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Get tag metadata
id: tag
run: |
Expand Down

0 comments on commit 0c895a1

Please sign in to comment.