Skip to content

Commit a7cda75

Browse files
committed
Clean up Django version support for 6.0 release
1 parent 9e532e2 commit a7cda75

File tree

5 files changed

+461
-355
lines changed

5 files changed

+461
-355
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v6
1212
- run: pipx install "poetry>=2.1.2,<3"
13-
- uses: actions/setup-python@v5
13+
- uses: actions/setup-python@v6
1414
with:
15-
python-version: '3.13'
15+
python-version: '3.14'
1616
cache: 'poetry'
1717
- run: pip install tox
18-
- run: tox -e lint,py313-dj51
18+
- run: tox -e lint,py314-dj60
1919
test_compatibility:
2020
needs: test
2121
runs-on: ubuntu-latest
@@ -27,17 +27,19 @@ jobs:
2727
# See https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django for the official matrix.
2828
# Additionally test on Django’s main branch with the most recent Python version.
2929
- python: '3.10'
30-
toxenv: py310-dj42,py310-dj51,py310-dj52
30+
toxenv: py310-dj42,py310-dj52
3131
- python: '3.11'
32-
toxenv: py311-dj42,py311-dj51,py311-dj52
32+
toxenv: py311-dj42,py311-dj52
3333
- python: '3.12'
34-
toxenv: py312-dj42,py312-dj52
34+
toxenv: py312-dj42,py312-dj52,py312-dj60
3535
- python: '3.13'
36-
toxenv: py313-dj42,py313-dj52,py312-djmain
36+
toxenv: py313-dj42,py313-dj52,py313-dj60
37+
- python: '3.14'
38+
toxenv: py314-dj42,py314-dj52,py314-djmain
3739
steps:
3840
- uses: actions/checkout@v6
3941
- run: pipx install "poetry>=2.1.2,<3"
40-
- uses: actions/setup-python@v5
42+
- uses: actions/setup-python@v6
4143
with:
4244
python-version: ${{ matrix.python }}
4345
allow-prereleases: true
@@ -57,7 +59,7 @@ jobs:
5759
- run: npm run lint
5860
- run: npm run build
5961
- run: pipx install "poetry>=2.1.2,<3"
60-
- uses: actions/setup-python@v5
62+
- uses: actions/setup-python@v6
6163
with:
6264
python-version-file: pyproject.toml
6365
cache: 'poetry'

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ poetry add --dev django-pattern-library
1717

1818
We support:
1919

20-
- Django 4.2, 5.0, 5.1
20+
- Django 4.2, 5.2, 6.0
2121
- Python 3.10, 3.11, 3.12, 3.13, 3.14
2222
- Django Templates and Jinja (experimental)
2323
- Modern “evergreen” desktop and mobile browsers

0 commit comments

Comments
 (0)