From aebafe590c5d3959ad47feffd3b0c2eccf63935a Mon Sep 17 00:00:00 2001 From: Jusong Yu Date: Wed, 27 Nov 2024 17:52:25 +0100 Subject: [PATCH] Support python 3.12 --- .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 ac5182c..9c5579d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -58,7 +58,7 @@ jobs: strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] services: rabbitmq: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ec67b2..e29e8ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] rabbitmq: [latest] include: - python-version: '3.8' diff --git a/pyproject.toml b/pyproject.toml index 45df734..3484e3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ] keywords = ['ommunication', 'messaging', 'rpc', 'broadcast'] requires-python = '>=3.8'