Skip to content

Commit

Permalink
Add support for Python 3.10, 3.11, 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
daneah committed Oct 9, 2024
1 parent a6b5c0d commit 0482e92
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,14 @@ jobs:
strategy:
matrix:
python:
- version: "3.13"
toxenv: "py313"
- version: "3.12"
toxenv: "py312"
- version: "3.11"
toxenv: "py311"
- version: "3.10"
toxenv: "py310"
- version: "3.9"
toxenv: "py39"
steps:
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', 'py312']
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']

[tool.isort]
profile = "black"
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ classifiers =
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3.9
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 @@ -84,7 +87,7 @@ source =
*/site-packages/repo_man

[tox:tox]
envlist = py39,py312
envlist = py39,py310,py311,py312,py313
isolated_build = True

[testenv]
Expand Down

0 comments on commit 0482e92

Please sign in to comment.