From f0083995ae9204eb35c32c006a944168dd1029b2 Mon Sep 17 00:00:00 2001 From: Alexander Goscinski Date: Wed, 5 Feb 2025 10:00:11 +0100 Subject: [PATCH] Stop support for py3.8, start support for py3.13 (#312) --- .github/workflows/ci.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d813780..972accac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] fail-fast: false services: diff --git a/pyproject.toml b/pyproject.toml index ba563ac8..f0877103 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,14 +20,14 @@ classifiers = [ 'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', ] keywords = ['workflow', 'multithreaded', 'rabbitmq'] -requires-python = '>=3.8' +requires-python = '>=3.9' dependencies = [ 'kiwipy[rmq]~=0.8.5', 'nest_asyncio~=1.5,>=1.5.1',