File tree Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 15
15
python-version : " 3.11"
16
16
cache : ' poetry'
17
17
- run : pip install tox
18
- - run : tox -e lint,py311-dj42
18
+ - run : tox -e lint,py311-dj50
19
19
test_compatibility :
20
20
needs : test
21
21
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Unreleased
4
+
5
+ ### Added
6
+
7
+ - Add support for Django 5.0 ([ #241 ] ( https://github.com/torchbox/django-pattern-library/pull/241 ) )
8
+
3
9
## [ 1.1.0] ( https://github.com/torchbox/django-pattern-library/releases/tag/v1.1.0 ) - 2023-10-25
4
10
5
11
### Added
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ classifiers = [
25
25
" Framework :: Django :: 3.2" ,
26
26
" Framework :: Django :: 4.1" ,
27
27
" Framework :: Django :: 4.2" ,
28
+ " Framework :: Django :: 5.0" ,
28
29
]
29
30
packages = [
30
31
{ include = " pattern_library" },
@@ -43,7 +44,7 @@ exclude = [
43
44
44
45
[tool .poetry .dependencies ]
45
46
python = " ^3.8"
46
- Django = " >=3.2,<5.0 "
47
+ Django = " >=3.2,<5.1 "
47
48
PyYAML = " >=5.1,<7.0"
48
49
Markdown = " ^3.1"
49
50
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ envlist =
3
3
py{38,39,310}-dj32
4
4
py{38,39,310,311}-dj41
5
5
py{38,39,310,311}-dj42
6
+ py{38,39,310,311}-dj50
6
7
py{310,311}-djmain
7
8
lint
8
9
skipsdist = true
20
21
dj32: Django>=3.2,<3.3
21
22
dj41: Django>=4.1,<4.2
22
23
dj42: Django>=4.2,<5.0
24
+ dj50: Django>=5.0,<5.1
23
25
djmain: https://github.com/django/django/archive/main.zip
24
26
25
27
[testenv:lint]
You can’t perform that action at this time.
0 commit comments