Skip to content

Commit

Permalink
Merge pull request #62 from release-engineering/py313
Browse files Browse the repository at this point in the history
Add support for Python 3.13
  • Loading branch information
JAVGan authored Oct 10, 2024
2 parents 0d560ba + 6281c75 commit dc368b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
install_requires=[
'attrs',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = pip-compile, docs, lint, mypy, security, py39, py310, py311, py312
envlist = pip-compile, docs, lint, mypy, security, py39, py310, py311, py312, py313

[testenv]
envdir = {toxworkdir}/shared-environment
Expand Down

0 comments on commit dc368b3

Please sign in to comment.