Skip to content

Commit

Permalink
chore: Support Python 3.13 (#532)
Browse files Browse the repository at this point in the history
  • Loading branch information
hf-kklein authored Dec 14, 2024
1 parent 2c7eb66 commit 9be3ae0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.12" ]
python-version: [ "3.13" ]
tox-env: [ "test", "lint", "formatcheck", "typecheck", "test_packaging", "dev" ]
name: ${{ matrix.tox-env }}
runs-on: ${{ matrix.os }}
Expand Down
21 changes: 11 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ build-backend = "hatchling.build"

[project]
dependencies = [
"click>=8.0.0",
"colorlog>=6.7.0",
"more_itertools>=10.4.0",
"openpyxl>=3.1.1",
"pandas>=1.5.3",
"python-docx>=1.0.0",
"pytz>=2022.7.1",
"pydantic>=2.6.0",
"tomlkit>=0.11.6",
"xlsxwriter>=3.0.8",
"click>=8.1.7",
"colorlog>=6.9.0",
"more_itertools>=10.5.0",
"openpyxl>=3.1.5",
"pandas>=2.2.3",
"python-docx>=1.1.2",
"pytz>=2024.2",
"pydantic>=2.9.2",
"tomlkit>=0.13.2",
"xlsxwriter>=3.2.0",
"efoli>=1.4.0",
]

Expand All @@ -40,6 +40,7 @@ classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["readme", "version"]

Expand Down

0 comments on commit 9be3ae0

Please sign in to comment.