Skip to content
This repository has been archived by the owner on Nov 19, 2023. It is now read-only.

feat: Officially support Python 3.11/Django 4.1 #289

Merged
merged 1 commit into from
Nov 26, 2022
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/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.7.14", "3.8.14" , "3.9.14", "3.10.7" ]
python-version: [ "3.7.14", "3.8.14" , "3.9.14", "3.10.7", "3.11.0" ]
django-version: [ "3.2", "4.0", "4.1" ]
exclude:
# Django v4 dropped 3.7 support
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,13 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Django",
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
"Framework :: Pytest",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
Expand Down