Skip to content

Commit

Permalink
Test with Python 3.13 beta (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
faph authored Jul 29, 2024
2 parents cd0e2ec + 0d7d558 commit 627a9cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13-dev'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Tox virtual environment manager for testing and quality assurance

[tox]
envlist = py38, py39, py310, py311, py312, linting, docs
envlist = py38, py39, py310, py311, py312, py313, linting, docs
isolated_build = True
# Developers may not have all Python versions
skip_missing_interpreters = true
Expand All @@ -25,7 +25,8 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312, linting, docs
3.12: py312
3.13: py313, linting, docs

[testenv]
# Base test environment
Expand Down

0 comments on commit 627a9cf

Please sign in to comment.