From 87d045909584ab3b23ca231e634e9bbeb2793755 Mon Sep 17 00:00:00 2001 From: Lino Date: Sat, 27 Jan 2024 10:43:37 +0100 Subject: [PATCH] Revert "Add Python 3.11 to CI, tox, and trove classifiers" --- .github/workflows/test.yml | 5 +---- docs/installation.rst | 2 +- setup.py | 1 - tox.ini | 9 ++++----- 4 files changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1437417..1de5c79 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false max-parallel: 5 matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.8'] + python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.8'] django-version: ['2.2', '3.2', '4.0'] include: # Tox configuration for documentation environment @@ -29,9 +29,6 @@ jobs: - python-version: '3.10' django-version: 'main' experimental: true - - python-version: '3.11' - django-version: 'main' - experimental: true exclude: # Exclude Django 4.0 for Python 3.7 as it is not supported - python-version: '3.7' diff --git a/docs/installation.rst b/docs/installation.rst index 74db388..04a24c8 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -27,7 +27,7 @@ Then, make sure ``recurrence`` is in your ``INSTALLED_APPS`` setting: Supported Django and Python versions ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Currently, django-recurrence supports Python 3.6, 3.7, 3.8, 3.9, 3.10, and 3.11. +Currently, django-recurrence supports Python 3.6, 3.7, 3.8, 3.9, and 3.10. django-recurrence is currently tested with django 2.2, 3.2, and 4.0 diff --git a/setup.py b/setup.py index e70ab8e..07896b8 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,6 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", "Programming Language :: Python :: Implementation", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", diff --git a/tox.ini b/tox.ini index 80316b7..257c533 100644 --- a/tox.ini +++ b/tox.ini @@ -2,10 +2,10 @@ envlist = py37-djdocs py37-djqa - py{37,38,39,310,311,py38}-dj22 - py{37,38,39,310,311,py38}-dj32 - py{38,39,310,311,py38}-dj40 - py{38,39,310,311,py38}-djmain + py{37,38,39,310,py38}-dj22 + py{37,38,39,310,py38}-dj32 + py{38,39,310,py38}-dj40 + py{38,39,310,py38}-djmain [gh-actions] python = @@ -13,7 +13,6 @@ python = 3.8: py38 3.9: py39 3.10: py310 - 3.11: py311 pypy-3.8: pypy38 [gh-actions:env]