From 4a548e6676b9ac68d30a3a484310fab80999d922 Mon Sep 17 00:00:00 2001 From: salmannawaz Date: Tue, 2 Apr 2024 17:40:40 +0500 Subject: [PATCH] chore: Add python 3.11 support (#732) Co-authored-by: Awais Qureshi --- .github/workflows/ci.yml | 2 +- setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c3fb64352..5b069265e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.8', '3.12'] + python-version: ['3.8', '3.11', '3.12'] toxenv: [quality, django42] steps: diff --git a/setup.py b/setup.py index 4707b21ff..65340ad43 100755 --- a/setup.py +++ b/setup.py @@ -74,6 +74,7 @@ def get_version(*file_paths): 'Natural Language :: English', "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] ) diff --git a/tox.ini b/tox.ini index d16e25e37..d597966c4 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38,312}-django{42}, quality, docs +envlist = py{38,311,312}-django{42}, quality, docs [pytest] DJANGO_SETTINGS_MODULE = xblock.test.settings