Skip to content

Commit 9be3ae0

Browse files
authored
chore: Support Python 3.13 (#532)
1 parent 2c7eb66 commit 9be3ae0

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

.github/workflows/checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ ubuntu-latest ]
11-
python-version: [ "3.12" ]
11+
python-version: [ "3.13" ]
1212
tox-env: [ "test", "lint", "formatcheck", "typecheck", "test_packaging", "dev" ]
1313
name: ${{ matrix.tox-env }}
1414
runs-on: ${{ matrix.os }}

pyproject.toml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ build-backend = "hatchling.build"
1111

1212
[project]
1313
dependencies = [
14-
"click>=8.0.0",
15-
"colorlog>=6.7.0",
16-
"more_itertools>=10.4.0",
17-
"openpyxl>=3.1.1",
18-
"pandas>=1.5.3",
19-
"python-docx>=1.0.0",
20-
"pytz>=2022.7.1",
21-
"pydantic>=2.6.0",
22-
"tomlkit>=0.11.6",
23-
"xlsxwriter>=3.0.8",
14+
"click>=8.1.7",
15+
"colorlog>=6.9.0",
16+
"more_itertools>=10.5.0",
17+
"openpyxl>=3.1.5",
18+
"pandas>=2.2.3",
19+
"python-docx>=1.1.2",
20+
"pytz>=2024.2",
21+
"pydantic>=2.9.2",
22+
"tomlkit>=0.13.2",
23+
"xlsxwriter>=3.2.0",
2424
"efoli>=1.4.0",
2525
]
2626

@@ -40,6 +40,7 @@ classifiers = [
4040
"Programming Language :: Python :: 3 :: Only",
4141
"Programming Language :: Python :: 3.11",
4242
"Programming Language :: Python :: 3.12",
43+
"Programming Language :: Python :: 3.13",
4344
]
4445
dynamic = ["readme", "version"]
4546

0 commit comments

Comments
 (0)