Skip to content

Commit

Permalink
Merge pull request #138 from ithaka/chore/python313-support
Browse files Browse the repository at this point in the history
  • Loading branch information
daneah authored Oct 10, 2024
2 parents 1e2b001 + 51409c5 commit 4a59973
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
strategy:
matrix:
python:
- version: '3.13'
toxenv: 'py313'
- version: '3.12'
toxenv: 'py312'
- version: '3.11'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Changed
- Modernize package quality tooling and configuration
- Add support for Python 3.13

## [8.0.0] - 2024-09-04
### Changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[tool.black]
line-length = 120
target-version = ['py39', 'py310', 'py311', 'py312']
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']

[tool.isort]
profile = "black"
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
License :: OSI Approved :: MIT License
Expand Down Expand Up @@ -80,7 +81,7 @@ addopts = -ra --strict-markers --cov
xfail_strict = True
[tox:tox]
envlist = py39,py310,py311,py312
envlist = py39,py310,py311,py312,py313
isolated_build = True
[testenv]
Expand Down

0 comments on commit 4a59973

Please sign in to comment.