From db1b755d9da7f241228b067a33cc15859aba8a4a Mon Sep 17 00:00:00 2001 From: Pascal F Date: Mon, 24 Jun 2024 09:39:07 +0200 Subject: [PATCH] Update python supported versions --- .github/workflows/test_suite.yml | 2 +- setup.py | 2 +- tox.ini | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_suite.yml b/.github/workflows/test_suite.yml index 85aab51..560e586 100644 --- a/.github/workflows/test_suite.yml +++ b/.github/workflows/test_suite.yml @@ -10,11 +10,11 @@ jobs: strategy: matrix: python-version: - - "3.7" - "3.8" - "3.9" - "3.10" - "3.11" + - "3.12" steps: - uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index 39c6613..41c98ab 100644 --- a/setup.py +++ b/setup.py @@ -43,11 +43,11 @@ def readfile(filename): "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", - "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", + "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Libraries :: Python Modules", ], ) diff --git a/tox.ini b/tox.ini index b591c1b..012d9b1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,16 +1,16 @@ [tox] envlist = - py{37,38,39,310}-dj-3.2 + py{38,39,310}-dj-3.2 py{38,39,310,311}-dj-4.1 py{310,311}-dj-master [gh-actions] python = - 3.7: py37 3.8: py38 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312 [testenv] usedevelop = true