Skip to content

Commit

Permalink
add py3.12 and py3.13 testing
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacharrisholt committed Nov 3, 2024
1 parent e6043e7 commit 9b539ba
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions poetry==1.4.1
- name: Test with tox
run: tox
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions poetry==1.4.1
- name: Test with tox
run: tox
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
requires =
tox>=4
envlist = py{38,39,310,311,312}, black, ruff, pyright, isort
envlist = py{38,39,310,311,312,313}, black, ruff, pyright, isort
isolated_build = true

[gh-actions]
Expand All @@ -11,6 +11,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[testenv]
setenv =
Expand Down

0 comments on commit 9b539ba

Please sign in to comment.