From 2af390738df3f151c8225c01e265527b65d7a005 Mon Sep 17 00:00:00 2001 From: Sebastiaan Huber Date: Mon, 13 Nov 2023 10:07:20 +0100 Subject: [PATCH] Dependencies: Add support for Python 3.12 (#275) --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- pyproject.toml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 1de6e969..427ccfd5 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -58,7 +58,7 @@ jobs: strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] services: postgres: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 883e8869..326cc704 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] services: rabbitmq: diff --git a/pyproject.toml b/pyproject.toml index af490dc1..7ff35928 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,7 @@ classifiers = [ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ] keywords = ['workflow', 'multithreaded', 'rabbitmq'] requires-python = '>=3.7'