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 1515 python-version : " 3.11"
1616 cache : ' poetry'
1717 - run : pip install tox
18- - run : tox -e lint,py311-dj42
18+ - run : tox -e lint,py311-dj50
1919 test_compatibility :
2020 needs : test
2121 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## Unreleased
4+
5+ ### Added
6+
7+ - Add support for Django 5.0 ([ #241 ] ( https://github.com/torchbox/django-pattern-library/pull/241 ) )
8+
39## [ 1.1.0] ( https://github.com/torchbox/django-pattern-library/releases/tag/v1.1.0 ) - 2023-10-25
410
511### Added
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ classifiers = [
2525 " Framework :: Django :: 3.2" ,
2626 " Framework :: Django :: 4.1" ,
2727 " Framework :: Django :: 4.2" ,
28+ " Framework :: Django :: 5.0" ,
2829]
2930packages = [
3031 { include = " pattern_library" },
@@ -43,7 +44,7 @@ exclude = [
4344
4445[tool .poetry .dependencies ]
4546python = " ^3.8"
46- Django = " >=3.2,<5.0 "
47+ Django = " >=3.2,<5.1 "
4748PyYAML = " >=5.1,<7.0"
4849Markdown = " ^3.1"
4950
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ envlist =
33 py{38,39,310}-dj32
44 py{38,39,310,311}-dj41
55 py{38,39,310,311}-dj42
6+ py{38,39,310,311}-dj50
67 py{310,311}-djmain
78 lint
89skipsdist = true
2021 dj32: Django>=3.2,<3.3
2122 dj41: Django>=4.1,<4.2
2223 dj42: Django>=4.2,<5.0
24+ dj50: Django>=5.0,<5.1
2325 djmain: https://github.com/django/django/archive/main.zip
2426
2527[testenv:lint]
You can’t perform that action at this time.
0 commit comments