Skip to content

Commit

Permalink
Remove py3.8 from testing and add testing against py3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
DanSava committed Dec 16, 2024
1 parent e444d68 commit 4848794
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
- name: Install dependencies
run: pip install --upgrade setuptools setuptools_scm wheel twine
- name: Build package
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.11", "3.12"]
os: [ubuntu-latest]

steps:
Expand All @@ -35,5 +35,5 @@ jobs:
pytest
- name: Run black
if: ${{ matrix.python-version == '3.11'}}
if: ${{ matrix.python-version == '3.12'}}
uses: psf/black@stable

0 comments on commit 4848794

Please sign in to comment.