Skip to content

Commit dc368b3

Browse files
authored
Merge pull request #62 from release-engineering/py313
Add support for Python 3.13
2 parents 0d560ba + 6281c75 commit dc368b3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/tox-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
matrix:
4444
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
45-
python-version: ["3.9", "3.10", "3.11", "3.12"]
45+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
4646
steps:
4747
- uses: actions/checkout@v4
4848
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
'Programming Language :: Python :: 3.10',
1818
'Programming Language :: Python :: 3.11',
1919
'Programming Language :: Python :: 3.12',
20+
'Programming Language :: Python :: 3.13',
2021
],
2122
install_requires=[
2223
'attrs',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = pip-compile, docs, lint, mypy, security, py39, py310, py311, py312
2+
envlist = pip-compile, docs, lint, mypy, security, py39, py310, py311, py312, py313
33

44
[testenv]
55
envdir = {toxworkdir}/shared-environment

0 commit comments

Comments
 (0)