Drop support for EOL Python 3.7

This commit is contained in:
Hugo van Kemenade 2023-06-15 20:39:29 +03:00
parent b76c6c497b
commit dc505a968d
3 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12-dev']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12-dev']
services:
postgres:

View file

@ -17,4 +17,4 @@ repos:
rev: v3.3.1
hooks:
- id: pyupgrade
args: [--py37-plus]
args: [--py38-plus]

View file

@ -29,7 +29,7 @@ setup(
maintainer='JazzBand',
url='https://github.com/jazzband/django-model-utils',
packages=find_packages(exclude=['tests*']),
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=['Django>=3.2'],
classifiers=[
'Development Status :: 5 - Production/Stable',
@ -39,11 +39,11 @@ setup(
'Operating System :: OS Independent',
'Programming Language :: Python',
'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',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',