From 7c0063f180f9d0bfc4360a731a7a81f165cfa7a5 Mon Sep 17 00:00:00 2001 From: Irtaza Akram Date: Fri, 16 Feb 2024 15:47:22 +0500 Subject: [PATCH] fix: remove python 3.11 support --- .github/workflows/ci.yml | 2 +- CHANGELOG.rst | 2 +- setup.py | 1 - tox.ini | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f02607a..c76a960 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-20.04] - python-version: ["3.8", "3.11", "3.12"] + python-version: ["3.8", "3.12"] toxenv: [ quality, diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6b883d8..ec72a02 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,7 +13,7 @@ Change Log Unreleased -* Added support for python3.11 and 3.12. +* Added support for python 3.12. [1.0.2] - 2023-06-14 diff --git a/setup.py b/setup.py index 9707a1e..d44873c 100644 --- a/setup.py +++ b/setup.py @@ -89,7 +89,6 @@ 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', ], entry_points={ diff --git a/tox.ini b/tox.ini index ad2cb55..19a2181 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38,311,312}-django{42}-celery{53},quality,docs,pii_check +envlist = py{38,312}-django{42}-celery{53},quality,docs,pii_check [pytest] DJANGO_SETTINGS_MODULE = test_settings