Skip to content

Commit 361c4c5

Browse files
committed
Drop py36 environment and add django 5.x
1 parent 73c5a18 commit 361c4c5

File tree

2 files changed

+27
-13
lines changed

2 files changed

+27
-13
lines changed

Diff for: .github/workflows/tests.yml

+20-9
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,21 @@ jobs:
1212
strategy:
1313
matrix:
1414
include:
15-
- python: "3.6"
16-
env: py36-django11
17-
os: ubuntu-20.04 # 3.6 is not available on ubuntu-latest
1815
- python: "3.7"
1916
env: py37-django11
2017
os: ubuntu-20.04 # 3.7 is not available on ubuntu-latest
2118
- python: "3.8"
2219
env: py38-django11
2320

24-
- python: "3.6"
25-
env: py36-django21
26-
os: ubuntu-20.04 # 3.6 is not available on ubuntu-latest
2721
- python: "3.8"
2822
env: py38-django21
2923
- python: "3.9"
3024
env: py39-django21
3125

32-
- python: "3.6"
33-
env: py36-django32
34-
os: ubuntu-20.04 # 3.6 is not available on ubuntu-latest
3526
- python: "3.8"
3627
env: py38-django32
28+
- python: "3.9"
29+
env: py39-django32
3730
- python: "3.10"
3831
env: py310-django32
3932

@@ -44,16 +37,34 @@ jobs:
4437
- python: "3.10"
4538
env: py310-django40
4639

40+
- python: "3.9"
41+
env: py39-django41
4742
- python: "3.10"
4843
env: py310-django41
4944
- python: "3.11"
5045
env: py311-django41
5146

47+
- python: "3.9"
48+
env: py39-django42
5249
- python: "3.10"
5350
env: py310-django42
5451
- python: "3.11"
5552
env: py311-django42
5653

54+
- python: "3.10"
55+
env: py310-django50
56+
- python: "3.11"
57+
env: py311-django50
58+
- python: "3.12"
59+
env: py312-django50
60+
61+
- python: "3.10"
62+
env: py310-django51
63+
- python: "3.11"
64+
env: py311-django51
65+
- python: "3.12"
66+
env: py312-django51
67+
5768
steps:
5869
- uses: actions/checkout@v2
5970
- name: Set up Python ${{ matrix.python }}

Diff for: tox.ini

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
[tox]
22
envlist =
3-
py{36,37,38}-django11
4-
py{36,38,39}-django21
5-
py{36,38,310}-django32
3+
py{37,38}-django11
4+
py{38,39}-django21
5+
py{38,39,310}-django32
66
py{38,39,310}-django40
7-
py{310,311}-django{41,42}
7+
py{39,310,311}-django{41,42}
8+
py{310,311,312}-django{50,51}
89

910
[testenv]
1011
deps =
12+
django51: django==5.1
13+
django50: django==5.0
1114
django42: django<4.3
1215
django41: django<4.2
1316
django40: django<4.1

0 commit comments

Comments
 (0)