File tree Expand file tree Collapse file tree 3 files changed +7
-15
lines changed Expand file tree Collapse file tree 3 files changed +7
-15
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,10 @@ jobs:
25
25
# Test with all supported Django versions, for all compatible Python versions.
26
26
# See https://docs.djangoproject.com/en/4.0/faq/install/#what-python-version-can-i-use-with-django for the official matrix.
27
27
# Additionally test on Django’s main branch with the most recent Python version.
28
- - python : " 3.7"
29
- toxenv : py37-dj32
30
28
- python : " 3.8"
31
- toxenv : py38-dj32,py38-dj40,py38- dj41,py38-dj42
29
+ toxenv : py38-dj32,py38-dj41,py38-dj42
32
30
- python : " 3.9"
33
- toxenv : py39-dj32,py39-dj40,py39- dj41,py39-dj42
31
+ toxenv : py39-dj32,py39-dj41,py39-dj42
34
32
- python : " 3.10"
35
33
# Skip testing Django 4.0, already tested in previous workflow job.
36
34
toxenv : py310-dj32,py310-dj41,py310-dj42,py310-djmain
Original file line number Diff line number Diff line change @@ -17,15 +17,14 @@ classifiers = [
17
17
" License :: OSI Approved :: BSD License" ,
18
18
" Operating System :: OS Independent" ,
19
19
" Programming Language :: Python" ,
20
- " Programming Language :: Python :: 3.7" ,
21
20
" Programming Language :: Python :: 3.8" ,
22
21
" Programming Language :: Python :: 3.9" ,
23
22
" Programming Language :: Python :: 3.10" ,
24
23
" Programming Language :: Python :: 3.11" ,
25
24
" Framework :: Django" ,
26
25
" Framework :: Django :: 3.2" ,
27
- " Framework :: Django :: 4.0" ,
28
26
" Framework :: Django :: 4.1" ,
27
+ " Framework :: Django :: 4.2" ,
29
28
]
30
29
packages = [
31
30
{ include = " pattern_library" },
@@ -43,8 +42,8 @@ exclude = [
43
42
"Issues" = " https://github.com/torchbox/django-pattern-library/issues"
44
43
45
44
[tool .poetry .dependencies ]
46
- python = " ^3.7 "
47
- Django = " >=3.2,<4.2 "
45
+ python = " ^3.8 "
46
+ Django = " >=3.2,<5.0 "
48
47
PyYAML = " >=5.1,<7.0"
49
48
Markdown = " ^3.1"
50
49
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
envlist =
3
- py{37,38,39,310}-dj32
4
- py{38,39,310,311}-dj40
3
+ py{38,39,310}-dj32
5
4
py{38,39,310,311}-dj41
6
5
py{38,39,310,311}-dj42
7
6
py{310,311}-djmain
@@ -19,12 +18,8 @@ commands =
19
18
poetry run django-admin render_patterns --settings =tests.settings.dev --pythonpath =. --dry-run
20
19
deps =
21
20
dj32: Django>=3.2,<3.3
22
- dj40: Django>=4.0,<4.1
23
21
dj41: Django>=4.1,<4.2
24
- ; Use pre-releases until stable releases are available.
25
- ; dj42: Django==4.2a1
26
- ; dj42: Django>=4.2,<4.3
27
- dj42: Django ==4.2rc1
22
+ dj42: Django>=4.2,<5.0
28
23
djmain: https://github.com/django/django/archive/main.zip
29
24
30
25
[testenv:lint]
You can’t perform that action at this time.
0 commit comments