Skip to content

Commit

Permalink
chore: add support for python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
tklockau committed Oct 21, 2024
1 parent a13188a commit 61fa17e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
include:
- os: windows-latest
python_version: "3.8"
python_version: "3.13"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{matrix.python_version}}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dynamic = ["version"]
name = "raillabel"
description = "A devkit for working with recorded and annotated train ride data from Deutsche Bahn."
readme = "README.md"
requires-python = ">=3.8, <3.13"
requires-python = ">=3.8, <3.14"
license = { text = "Apache-2.0" }
authors = [
{ name = "DB InfraGO AG" },
Expand Down Expand Up @@ -181,7 +181,7 @@ zip-safe = false
"*" = ["py.typed"]

[tool.setuptools.packages.find]
exclude = ["LICENSES"]
exclude = ["LICENSES", "docs/*", "tests/*"]

[tool.setuptools_scm]
# This section must exist for setuptools_scm to work

0 comments on commit 61fa17e

Please sign in to comment.