From 145f07deab3c456ddc957977806c46fe67117b24 Mon Sep 17 00:00:00 2001 From: cakemanny Date: Sun, 29 Sep 2024 17:49:19 +0200 Subject: [PATCH] add python 3.13 to support matrix --- .github/workflows/{pythonpackage.yml => test.yml} | 2 +- CHANGELOG.md | 2 ++ setup.py | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) rename .github/workflows/{pythonpackage.yml => test.yml} (94%) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/test.yml similarity index 94% rename from .github/workflows/pythonpackage.yml rename to .github/workflows/test.yml index e13cb58..91b251d 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 09154ce..f1be719 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +- Support for Python 3.13. ### Removed - Support for Python 3.7. If you still use Python 3.7, ensure you pin the version to 0.7.0 diff --git a/setup.py b/setup.py index 59a81ea..823219b 100644 --- a/setup.py +++ b/setup.py @@ -36,6 +36,7 @@ "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", "Operating System :: OS Independent", "Intended Audience :: Developers",