From d6074598146d7f9e1c5e4a2941cbb0f35cc3459c Mon Sep 17 00:00:00 2001 From: Kamforka Date: Fri, 4 Oct 2024 18:12:58 +0200 Subject: [PATCH] #347 - Add support for Python 3.13 --- .github/workflows/main-cicd.yml | 3 +-- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main-cicd.yml b/.github/workflows/main-cicd.yml index a7bc0ac..1aa2bc1 100644 --- a/.github/workflows/main-cicd.yml +++ b/.github/workflows/main-cicd.yml @@ -6,7 +6,6 @@ on: tags: - "*" pull_request: - jobs: static-checks: uses: ./.github/workflows/_static-checks.yml @@ -19,8 +18,8 @@ jobs: build-docs: uses: ./.github/workflows/_build-docs.yml upload-package: - uses: ./.github/workflows/_upload-package.yml if: startsWith(github.ref, 'refs/tags/') + uses: ./.github/workflows/_upload-package.yml needs: [static-checks, integration-tests, build-package, build-docs] secrets: PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} diff --git a/pyproject.toml b/pyproject.toml index 7ddc903..e0a87f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "License :: OSI Approved :: MIT License", ] authors = [{ name = "Szabolcs Antal", email = "antalszabolcs01@gmail.com" }]