Skip to content

Commit cdf271d

Browse files
trauty-is-mejheld
authored andcommitted
Add support for Django 4.2.
This results in the need to remove python versions less than 3.8 otherwise it won't install.
1 parent 1aac182 commit cdf271d

File tree

2 files changed

+5
-29
lines changed

2 files changed

+5
-29
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,11 @@ jobs:
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10']
13-
django-version: [2.2, 2.2.8, 3.0, 3.1, 3.2, 4.0]
12+
python-version: [3.8, 3.9, '3.10', 3.11]
13+
django-version: [3.2, 4.1, 4.2]
1414
exclude:
15-
- python-version: 3.5
16-
django-version: 2.2.8
17-
- python-version: 3.5
18-
django-version: 3.0
19-
- python-version: 3.5
20-
django-version: 3.1
21-
- python-version: 3.5
15+
- python-version: 3.11
2216
django-version: 3.2
23-
- python-version: 3.5
24-
django-version: 4.0
25-
- python-version: 3.6
26-
django-version: 4.0
27-
- python-version: 3.7
28-
django-version: 4.0
29-
- python-version: 3.8
30-
django-version: 2.2
31-
- python-version: 3.10
32-
django-version: 2.2
33-
- python-version: 3.10
34-
django-version: 2.2.8
35-
- python-version: 3.10
36-
django-version: 3.0
37-
- python-version: 3.10
38-
django-version: 3.1
3917

4018
steps:
4119
- uses: actions/checkout@v2

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"beautifulsoup4",
1818
"django>=2.2,<5.0"
1919
],
20-
python_requires=">=3.5",
20+
python_requires=">=3.8",
2121
license='GPL3',
2222
description='Yet another Django audit log app, hopefully the simplest one.',
2323
long_description=README,
@@ -37,12 +37,10 @@
3737
'Operating System :: OS Independent',
3838
'Programming Language :: Python :: 3',
3939
'Programming Language :: Python :: 3 :: Only',
40-
'Programming Language :: Python :: 3.5',
41-
'Programming Language :: Python :: 3.6',
42-
'Programming Language :: Python :: 3.7',
4340
'Programming Language :: Python :: 3.8',
4441
'Programming Language :: Python :: 3.9',
4542
'Programming Language :: Python :: 3.10',
43+
'Programming Language :: Python :: 3.11',
4644
'Topic :: Software Development :: Libraries :: Python Modules',
4745
],
4846
)

0 commit comments

Comments
 (0)