From 115b2bb705a6828e247a67df1f0febc2f268a7f9 Mon Sep 17 00:00:00 2001 From: Paul Schilling Date: Thu, 25 Jul 2024 14:37:38 +0200 Subject: [PATCH] Drop support for Python 3.7,3.8 - add support for Python 3.11 --- .github/workflows/ci.yml | 5 +---- README.rst | 5 +++-- setup.cfg | 3 +-- tox.ini | 4 ++-- 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 831d21f..21360ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,11 +15,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ['3.7', '3.8', '3.9', '3.10'] + python: ['3.9', '3.10', '3.11'] django: ['3.2', '4.0'] - exclude: - - python: '3.7' - django: '4.0' name: Run the test suite (Python ${{ matrix.python }}, Django ${{ matrix.django }}) steps: diff --git a/README.rst b/README.rst index bd9aec1..21ffc6e 100644 --- a/README.rst +++ b/README.rst @@ -6,7 +6,8 @@ Open Forms Client (for Django) :Version: 0.4.0 :Source: https://github.com/open-formulieren/open-forms-client-django :Keywords: Open Forms, Client, Django -:PythonVersion: 3.7 +:PythonVersion: 3.9 - 3.11 +:DjangoVersion: 3.2 - 4.0 |build-status| |code-quality| |black| |coverage| @@ -36,7 +37,7 @@ Installation Requirements ------------ -* Python 3.7 or newer +* Python 3.9 or newer * Django 3.2 or newer diff --git a/setup.cfg b/setup.cfg index d8e2142..00e4f15 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,10 +19,9 @@ classifiers = Operating System :: Unix Operating System :: MacOS Operating System :: Microsoft :: Windows - 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 [options] diff --git a/tox.ini b/tox.ini index fbd63c1..cf5b855 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = - py{37,38,39,310}-django{32} - py{38,39,310}-django{40} + py{39,310,311}-django{32} + py{39,310,311}-django{40} isort black flake8