From 271e7a872735c49445b5b54855ff0e2b8992cbc9 Mon Sep 17 00:00:00 2001 From: lowercase00 <21188280+lowercase00@users.noreply.github.com> Date: Mon, 30 Jan 2023 01:49:40 -0300 Subject: [PATCH] Add 3.11 Support (#1780) --- .github/workflows/dependencies.yml | 4 ++-- .github/workflows/workflow.yml | 2 +- setup.py | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 6490553f..b2b5915e 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ["3.6", "3.7", "3.8.3", "3.9", "3.10"] + python-version: ["3.6", "3.7", "3.8.3", "3.9", "3.10", "3.11"] redis-version: [3, 4, 5, 6, 7] redis-py-version: [3.5.0] @@ -49,7 +49,7 @@ jobs: strategy: matrix: - python-version: ["3.6", "3.7", "3.8.3", "3.9", "3.10"] + python-version: ["3.6", "3.7", "3.8.3", "3.9", "3.10", "3.11"] redis-version: [3, 4, 5, 6, 7] steps: diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 05f3751f..d089f802 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ["3.6", "3.7", "3.8.3", "3.9", "3.10"] + python-version: ["3.6", "3.7", "3.8.3", "3.9", "3.10", "3.11"] redis-version: [3, 4, 5, 6, 7] redis-py-version: [3.5.0] diff --git a/setup.py b/setup.py index bc6d4b1a..d60465ef 100644 --- a/setup.py +++ b/setup.py @@ -76,6 +76,8 @@ setup( 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Internet', 'Topic :: Scientific/Engineering',