From b0a1503bd5581b9c1bfd87480a9d1080e5a4e09a Mon Sep 17 00:00:00 2001 From: Humberto Rocha Date: Fri, 17 May 2024 21:30:54 -0400 Subject: [PATCH] Add python 3.13 --- .github/workflows/test-suite.yml | 2 +- pyproject.toml | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index ea1632a..b9c4aa4 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -20,7 +20,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 975b4c6..fe99bc9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,12 +15,17 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Framework :: FastAPI", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", + "Programming Language :: Python", + "Topic :: Internet :: WWW/HTTP :: HTTP Servers", + "Topic :: Internet :: WWW/HTTP", + "Topic :: Internet", ] dependencies = [ "fastapi", @@ -69,7 +74,7 @@ build = "mkdocs build" server = "mkdocs serve" [[tool.hatch.envs.all.matrix]] -python = ["3.10", "3.11", "3.12"] +python = ["3.10", "3.11", "3.12", "3.13"] [tool.isort] profile = "black"