Skip to content

Commit

Permalink
feat: support Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
bossenti committed Dec 30, 2024
1 parent 895c0c8 commit 8c5f001
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [3.9, "3.10", "3.11", "3.12" ]
python: [3.9, "3.10", "3.11", "3.12", "3.13" ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
defaults:
run:
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]

requires-python = ">=3.9, <3.13"
requires-python = ">=3.9, <3.14"
dependencies = [
"pydantic>=2.0.0",
"requests>=2.31.0",
Expand Down
Loading

0 comments on commit 8c5f001

Please sign in to comment.