Skip to content

Commit 7daf43a

Browse files
authored
Confirmed support for Python 3.11.
1 parent cde0492 commit 7daf43a

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
tests:
1212
name: Python ${{ matrix.python-version }}
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-20.04
1414
strategy:
1515
fail-fast: false
1616
matrix:
@@ -20,6 +20,7 @@ jobs:
2020
- '3.8'
2121
- '3.9'
2222
- '3.10'
23+
- '3.11'
2324

2425
steps:
2526
- uses: actions/checkout@v3
@@ -42,7 +43,7 @@ jobs:
4243
- name: Set up Python
4344
uses: actions/setup-python@v3
4445
with:
45-
python-version: '3.10'
46+
python-version: '3.11'
4647
- name: Ensure latest setuptools
4748
run: |
4849
python -m pip install --upgrade pip setuptools

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
### Enhancements
66

7+
* Confirms support for Python 3.11.
8+
79
* Confirms support for Django 4.1.
810

911
* Don't ignore [boosted htmx requests](https://htmx.org/attributes/hx-boost/)

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ then “Overview” on the top right, next to “add request”.
3232
Requirements
3333
------------
3434

35-
* **Python**: 3.6, 3.7, 3.8, 3.9, 3.10
35+
* **Python**: 3.6, 3.7, 3.8, 3.9, 3.10, 3.11
3636
* **Django**: 2.2, 3.2, 4.0, 4.1
3737
* **python-dateutil**
3838

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ classifiers =
3030
Programming Language :: Python :: 3.8
3131
Programming Language :: Python :: 3.9
3232
Programming Language :: Python :: 3.10
33+
Programming Language :: Python :: 3.11
3334

3435
[options]
3536
install_requires =

tox.ini

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[tox]
22
envlist =
3-
{py36,py37,py38,py39}-django{22}-test
4-
{py36,py37,py38,py39,py310}-django{32}-test
5-
{py38,py39,py310}-django{main,40,41}-test
3+
{py36,py37,py38,py39}-django22-test
4+
{py36,py37,py38,py39,py310}-django32-test
5+
{py38,py39,py310}-django40-test
6+
{py38,py39,py310,py311}-django{main,41}-test
67
isort
78
flake
89

@@ -13,22 +14,23 @@ basepython =
1314
py38: python3.8
1415
py39: python3.9
1516
py310: python3.10
17+
py311: python3.11
1618
commands =
1719
test: coverage run ./runtests.py
1820
deps =
1921
coverage
2022
django22: Django>=2.2,<3.0
2123
django32: Django>=3.2,<4.0
2224
django40: Django>=4.0,<4.1
23-
django41: Django>=4.1a1,<4.2
25+
django41: Django>=4.1,<4.2
2426
djangomain: https://github.com/django/django/archive/main.tar.gz
2527

2628
[testenv:isort]
27-
basepython = python3.10
29+
basepython = python3.11
2830
deps = isort >= 5.1.0
2931
commands = isort --check-only --diff request tests setup.py runtests.py
3032

3133
[testenv:flake]
32-
basepython = python3.10
34+
basepython = python3.11
3335
deps = flake8
3436
commands = flake8

0 commit comments

Comments
 (0)