Skip to content

Commit c971c14

Browse files
committed
Exclude testing py38+py39 with djmain
...to fix the remaining failing tests. This is due to Django's `main` branch now requiring Python >=3.10. Example of the errors: https://github.com/jazzband/django-simple-history/actions/runs/4108104757/jobs/7088396098.
1 parent 0fcc722 commit c971c14

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ jobs:
2222
- python-version: '3.7'
2323
django-version: 'main'
2424

25+
- python-version: '3.8'
26+
django-version: 'main'
27+
28+
- python-version: '3.9'
29+
django-version: 'main'
30+
2531
- python-version: '3.11'
2632
django-version: '3.2'
2733
- python-version: '3.11'

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[tox]
22
envlist =
33
py{37,38,39,310}-dj32-{sqlite3,postgres,mysql,mariadb},
4-
py{38,39,310}-dj{40,41,main}-{sqlite3,postgres,mysql,mariadb},
4+
py{38,39}-dj{40,41}-{sqlite3,postgres,mysql,mariadb},
5+
py310-dj{40,41,main}-{sqlite3,postgres,mysql,mariadb},
56
py311-dj{41,main}-{sqlite3,postgres,mysql,mariadb},
67
docs,
78
lint

0 commit comments

Comments
 (0)