Skip to content

Commit

Permalink
Add support for django 4.2, python 3.11 (#104)
Browse files Browse the repository at this point in the history
* Support django 4.2

* Reorder excludes in test matrix for clarity

* Officially support py3.11
  • Loading branch information
mfogel authored Jun 18, 2023
1 parent bd097f4 commit e9ee69b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
24 changes: 16 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,24 @@ jobs:
strategy:
matrix:
# https://docs.djangoproject.com/en/4.1/faq/install/#what-python-version-can-i-use-with-django
python-version: ["3.7", "3.8", "3.9", "3.10"]
django-version: ["2.2", "3.2", "4.0", "4.1"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
django-version: ["2.2", "3.2", "4.0", "4.1", "4.2"]
db-engine: [sqlite, postgres]
exclude:
- python-version: "3.10"
django-version: "2.2"
- python-version: "3.7"
django-version: "4.0"
- python-version: "3.7"
django-version: "4.1"
- django-version: "2.2"
python-version: "3.10"
- django-version: "2.2"
python-version: "3.11"
- django-version: "3.2"
python-version: "3.11"
- django-version: "4.0"
python-version: "3.7"
- django-version: "4.0"
python-version: "3.11"
- django-version: "4.1"
python-version: "3.7"
- django-version: "4.2"
python-version: "3.7"

env:
PYTHON_VERSION: ${{ matrix.python-version }}
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ poetry run pytest

#### `main` (unreleased)

- Explicitly support django 4.1
- Add support for django 4.1, 4.2
- Add support for python 3.11

#### 5.0 (2022-02-08)

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Utilities",
Expand Down

0 comments on commit e9ee69b

Please sign in to comment.