Skip to content

Commit e2bf17e

Browse files
authored
Merge pull request #181 from jazzband/drop-py37
Drop Python 3.7
2 parents 84534ec + 5db53ee commit e2bf17e

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ jobs:
1212
matrix:
1313
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12-dev']
1414
django-version: ['3.2', '4.2', 'main']
15-
include:
16-
- python-version: '3.7'
17-
django-version: '3.2'
1815
exclude:
1916
- python-version: '3.11'
2017
django-version: '3.2'

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ language using Transifex_.
3333
Also have a look at the bundled example templates and views to see how you
3434
can integrate the application into your project.
3535

36-
Compatible with Django 3.2 and 4.2 on Python 3.7 to 3.11.
36+
Compatible with Django 3.2 and 4.2 on Python 3.8 to 3.11.
3737
Documentation is available at `readthedocs.org`_.
3838

3939

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,25 @@ authors = [
88
]
99
description = "Django sessions with a foreign key to the user"
1010
readme = "README.rst"
11-
# TOOD: drop 3.7
12-
requires-python = ">=3.7"
11+
requires-python = ">=3.8"
1312
keywords = ["django", "sessions"]
1413
license = {text = "MIT"}
1514
classifiers = [
1615
"Development Status :: 5 - Production/Stable",
1716
"Environment :: Web Environment",
1817
"Framework :: Django",
1918
"Framework :: Django :: 3.2",
20-
"Framework :: Django :: 4.0",
19+
"Framework :: Django :: 4.2",
2120
"Intended Audience :: Developers",
2221
"License :: OSI Approved :: MIT License",
2322
"Operating System :: OS Independent",
2423
"Programming Language :: Python",
2524
"Programming Language :: Python :: 3",
26-
"Programming Language :: Python :: 3.7",
2725
"Programming Language :: Python :: 3.8",
2826
"Programming Language :: Python :: 3.9",
2927
"Programming Language :: Python :: 3.10",
3028
"Programming Language :: Python :: 3.11",
29+
"Programming Language :: Python :: 3.12",
3130
"Topic :: Security",
3231
]
3332
dependencies = [

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ envlist =
99

1010
[gh-actions]
1111
python =
12-
3.7: py37
1312
3.8: py38
1413
3.9: py39
1514
3.10: py310

0 commit comments

Comments
 (0)