Skip to content

Commit 2718da4

Browse files
authored
Merge pull request #147 from engineervix/copilot/add-python-3-13-support
Add Python 3.13 support
2 parents 6ceeda0 + 2b04631 commit 2718da4

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
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
@@ -62,7 +62,7 @@ jobs:
6262
- name: Checkout Code Repository
6363
uses: actions/checkout@v5
6464

65-
- name: Set up Python 3.12
65+
- name: Set up Python
6666
uses: actions/setup-python@v6
6767
with:
6868
python-version: "3.13"

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 = ['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)