Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/front-end-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2

- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: '13.x'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: '13.x'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:

strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]

steps:
- name: Checkout the code
uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Version numbers should follow https://semver.org/spec/v2.0.0.html

## [Unreleased]

### Added

- Added Python 3.11 support.
- Added Django 4.1 support.

### Changed

- Remove upper boundary on supported Python version.
Expand All @@ -18,6 +23,7 @@ Version numbers should follow https://semver.org/spec/v2.0.0.html

- Fix broken CI by removing `tox-poetry-dev-dependencies`.


## [2.1.0] - 2022-08-01

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ website outside of local development.
## Support

Tests run on sensible combinations of:
- Python (3.6-3.10)
- Django (1.11-4.0)
- Python (3.6-3.11)
- Django (1.11-4.1)

If you're stuck on old version of Python or Django, you may consider installing
old versions.
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers = [
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
Expand All @@ -31,6 +32,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Database",
"Topic :: Documentation",
"Topic :: Utilities",
Expand Down
9 changes: 6 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
envlist =
py36-django{111,20,21,22,30,31,32}
py37-django{111,20,21,22,30,31,32}
py38-django{22,30,31,32,40}
py39-django{22,30,31,32,40}
py310-django{32,40}
py38-django{22,30,31,32,40,41}
py39-django{22,30,31,32,40,41}
py310-django{32,40,41}
py311-django{32,40,41}

isolated_build = True

Expand All @@ -15,6 +16,7 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311

[testenv]
commands =
Expand All @@ -32,6 +34,7 @@ deps =
django31: django~=3.1.0
django32: django~=3.2.0
django40: django~=4.0.0
django41: django~=4.1.0
setenv =
PYTHONDONTWRITEBYTECODE=1

Expand Down