From 80e9f56a13bf11e6df3ddc92a985c54b09a2bbcd Mon Sep 17 00:00:00 2001 From: Jakub Bednar Date: Tue, 12 Nov 2024 05:09:21 +0100 Subject: [PATCH] docs: add Python 3.13 to supported versions --- .circleci/config.yml | 4 ++++ setup.py | 1 + 2 files changed, 5 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index b61ff4b..023f024 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -141,6 +141,9 @@ workflows: - tests-python: name: test-3.12 python-image: "cimg/python:3.12" + - tests-python: + name: test-3.13 + python-image: "cimg/python:3.13" - tests-python: requires: - test-3.8 @@ -148,6 +151,7 @@ workflows: - test-3.10 - test-3.11 - test-3.12 + - test-3.13 name: test-integration python-image: *default-python pytest-marker: "integration" diff --git a/setup.py b/setup.py index 0088a3a..cda6b1e 100644 --- a/setup.py +++ b/setup.py @@ -65,5 +65,6 @@ def get_version(): 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', ] )