Skip to content

Commit 6e47413

Browse files
Copilotengineervix
andcommitted
Add Python 3.13 support to setup.cfg, main.yml, and pyproject.toml
Co-authored-by: engineervix <[email protected]>
1 parent cf985c7 commit 6e47413

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-22.04, macos-14, windows-2022]
25-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
25+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
2626

2727
steps:
2828
- name: Checkout Code Repository

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[tool.black]
66
line-length = 88
7-
target-version = ['py36', 'py37', 'py38', 'py39', 'py310', 'py311', 'py312']
7+
target-version = ['py36', 'py37', 'py38', 'py39', 'py310', 'py311', 'py312', 'py313']
88
include = '\.pyi?$'
99

1010
[tool.isort]

setup.cfg

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers =
2424
Programming Language :: Python :: 3.10
2525
Programming Language :: Python :: 3.11
2626
Programming Language :: Python :: 3.12
27+
Programming Language :: Python :: 3.13
2728
Topic :: Software Development :: Testing
2829
Topic :: Text Processing :: Markup :: Markdown
2930
Topic :: Utilities
@@ -94,12 +95,13 @@ testpaths = tests
9495
# --- tox automation configuration -------------------------------------------
9596

9697
[tox:tox]
97-
envlist = lint, py38, py39, py310, py311, py312
98+
envlist = lint, py38, py39, py310, py311, py312, py313
9899
isolated_build = True
99100

100101
[gh-actions]
101102
python =
102-
3.12: lint, py312
103+
3.13: lint, py313
104+
3.12: py312
103105
3.11: py311
104106
3.10: py310
105107
3.9: py39

0 commit comments

Comments
 (0)