Skip to content

Commit 6b415e4

Browse files
committed
Add docs & tentative support mentions for Python 3.11
1 parent ce2ca10 commit 6b415e4

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
3535
- python: "3.10"
3636
# Skip testing Django 4.0, already tested in previous workflow job.
3737
toxenv: py310-dj32,py310-djmain
38+
# Tentative support for next Python pre-release.
39+
- python: "3.11.0-alpha.4"
40+
toxenv: py311-dj40
3841
steps:
3942
- uses: actions/checkout@v2
4043
- uses: actions/setup-python@v2

docs/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ poetry add --dev django-pattern-library
1717

1818
We support:
1919

20-
- Django 2.2.x, 3.0.x, 3.1.x, 3.2.x, 4.0.x (experimental)
21-
- Python 3.7, 3.8, 3.9, 3.10
20+
- Django 2.2, 3.0, 3.1, 3.2, 4.0, 4.1 (experimental)
21+
- Python 3.7, 3.8, 3.9, 3.10, 3.11 (experimental)
2222
- Django Templates only, no Jinja support
2323

2424
## Configuration

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.8",
2222
"Programming Language :: Python :: 3.9",
2323
"Programming Language :: Python :: 3.10",
24+
"Programming Language :: Python :: 3.11",
2425
"Framework :: Django",
2526
"Framework :: Django :: 2.2",
2627
"Framework :: Django :: 3.0",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{37,38,39,310}-dj{22,30,31,32,40,main}, lint
2+
envlist = py{37,38,39,310,311}-dj{22,30,31,32,40,main}, lint
33
skipsdist = true
44

55
[testenv]

0 commit comments

Comments
 (0)