Skip to content

Commit 2171bf5

Browse files
committed
Remove tests against Django 3.2
1 parent c591f4e commit 2171bf5

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

.github/workflows/test.yml

+1-13
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,10 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13-
django-version: ['3.2', '4.2', '5.0', '5.1', 'main']
13+
django-version: ['4.2', '5.0', '5.1', 'main']
1414
postgres-version: ['12', '16']
1515
mariadb-version: ['10.6', '10.11', '11.2']
1616
exclude:
17-
# Django <=4.0 doesn't support python 3.11 (https://docs.djangoproject.com/en/4.1/faq/install/)
18-
- python-version: '3.11'
19-
django-version: '3.2'
20-
- python-version: '3.12'
21-
django-version: '3.2'
22-
2317
# Django 5.0 doesn't support python <=3.9 (https://docs.djangoproject.com/en/5.0/faq/install/)
2418
- python-version: '3.8'
2519
django-version: '5.0'
@@ -44,12 +38,6 @@ jobs:
4438
- python-version: '3.9'
4539
django-version: 'main'
4640

47-
# only test Django dev with PostgreSQL 12 and MariaDB 10.4
48-
- django-version: '3.2'
49-
postgres-version: '12'
50-
- django-version: '3.2'
51-
mariadb-version: '10.4'
52-
5341
services:
5442
postgres:
5543
image: postgres:${{ matrix.postgres-version }}

tox.ini

-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,13 @@ python =
88

99
[gh-actions:env]
1010
DJANGO =
11-
3.2: dj32
1211
4.2: dj42
1312
5.0: dj50
1413
5.1: dj51
1514
main: djmain
1615

1716
[tox]
1817
envlist =
19-
py{38,39,310}-dj32-{sqlite3,mysql,postgresql}
2018
py{38,39,310,311,312}-dj42-{sqlite3,mysql,postgresql}
2119
py{310,311,312}-dj{50,51,main}-{sqlite3,mysql,postgresql}
2220

@@ -29,7 +27,6 @@ deps =
2927
-rrequirements.txt
3028
mysql: mysqlclient
3129
postgresql: psycopg2-binary
32-
dj32: django>=3.2,<3.3
3330
dj42: django>=4.2,<4.3
3431
dj50: django>=5.0,<5.1
3532
dj51: django>=5.1,<5.2

0 commit comments

Comments
 (0)