Skip to content

Commit 15bfd3f

Browse files
committed
Remove test under Django 4.1
1 parent b84aa78 commit 15bfd3f

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
20-
django: ['3.2', '4.1', '4.2']
20+
django: ['3.2', '4.2']
2121
exclude:
2222
- python: '3.12'
2323
django: '3.2'

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ classifiers =
1717
Development Status :: 5 - Production/Stable
1818
Framework :: Django
1919
Framework :: Django :: 3.2
20-
Framework :: Django :: 4.1
2120
Framework :: Django :: 4.2
2221
Intended Audience :: Developers
2322
Operating System :: Unix

tox.ini

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
py{38,39,310}-django{32,41,42}
4-
py{38,39,310,311,312}-django{41,42}
3+
py{38,39,310}-django32
4+
py{38,39,310,311,312}-django{42}
55
isort
66
black
77
docs
@@ -10,7 +10,6 @@ skip_missing_interpreters = true
1010
[gh-actions:env]
1111
DJANGO =
1212
3.2: django32
13-
4.1: django41
1413
4.2: django42
1514

1615
[testenv]
@@ -27,7 +26,6 @@ extras =
2726
coverage
2827
deps =
2928
django32: Django~=3.2.0
30-
django41: Django~=4.1.0
3129
django42: Django~=4.2.0
3230
commands =
3331
py.test tests \

0 commit comments

Comments
 (0)