From 68186b6da89c1772678d5585df6740349369600f Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Fri, 2 Aug 2024 14:04:41 +0300 Subject: [PATCH] Add support for Python 3.13 --- .github/workflows/main.yml | 2 +- Makefile | 1 + src/setup.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cab0f04..6baec3b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,7 +44,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/Makefile b/Makefile index 4cb0207..bc08fa6 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,7 @@ PYTHON39=python3.9 PYTHON310=python3.10 PYTHON311=python3.11 PYTHON312=python3.12 +PYTHON313=python3.13 PYTHON2=/usr/bin/python2 PYTHON3=/usr/bin/python3 PYTHON=${PYTHON3} diff --git a/src/setup.py b/src/setup.py index b89ec75..e5cea9d 100644 --- a/src/setup.py +++ b/src/setup.py @@ -65,6 +65,7 @@ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Topic :: Software Development :: Libraries :: Python Modules', ], )