From 8d2493e1964b94a832ed365b0fdb0e3e4426f6c0 Mon Sep 17 00:00:00 2001 From: salman2013 Date: Fri, 29 Mar 2024 11:48:49 +0500 Subject: [PATCH] chore: Add python 3.11 support --- .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 5e7ab4a..0146600 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: os: [ubuntu-20.04] - python-version: ['3.8', '3.12'] + python-version: ['3.8', '3.11', '3.12'] toxenv: [quality, docs, pii_check, django42] exclude: - python-version: '3.8' diff --git a/setup.py b/setup.py index 5f5bbb5..47aab26 100644 --- a/setup.py +++ b/setup.py @@ -160,6 +160,7 @@ def is_requirement(line): '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 c985d0f..a3d84bf 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38,312}-django{42}, docs, quality +envlist = py{38,311,312}-django{42}, docs, quality [pycodestyle] exclude = .git,.tox,migrations