mirror of
https://github.com/jazzband/dj-database-url.git
synced 2026-03-16 22:20:24 +00:00
Update django 5.0 python compatability (#239)
This commit is contained in:
parent
ebb86f9b9a
commit
fc0dca1b25
2 changed files with 16 additions and 11 deletions
22
.github/workflows/test.yml
vendored
22
.github/workflows/test.yml
vendored
|
|
@ -6,21 +6,25 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
||||
django-version: ["3.2", "4.0", "4.1"]
|
||||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
|
||||
django-version: ["3.2", "4.2", "5.0"]
|
||||
exclude:
|
||||
# Python 3.7 is not compatible with 4.0
|
||||
- python-version: "3.7"
|
||||
django-version: "4.0"
|
||||
# Python 3.7 is not compatible with 4.1
|
||||
- python-version: "3.7"
|
||||
django-version: "4.1"
|
||||
django-version: "4.2"
|
||||
# Python 3.11 is not compatible with 3.2
|
||||
- python-version: "3.11"
|
||||
django-version: "3.2"
|
||||
# Python 3.11 is not compatible with 4.0
|
||||
- python-version: "3.11"
|
||||
django-version: "4.0"
|
||||
- python-version: "3.12"
|
||||
django-version: "3.2"
|
||||
# django 5.0 is not compatible with python 3.9 or lower
|
||||
- python-version: "3.7"
|
||||
django-version: "5.0"
|
||||
- python-version: "3.8"
|
||||
django-version: "5.0"
|
||||
- python-version: "3.9"
|
||||
django-version: "5.0"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
|
|
|||
5
setup.py
5
setup.py
|
|
@ -30,8 +30,8 @@ setup(
|
|||
"Environment :: Web Environment",
|
||||
"Framework :: Django",
|
||||
"Framework :: Django :: 3.2",
|
||||
"Framework :: Django :: 4.0",
|
||||
"Framework :: Django :: 4.1",
|
||||
"Framework :: Django :: 4.2",
|
||||
"Framework :: Django :: 5.0",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: BSD License",
|
||||
"Operating System :: OS Independent",
|
||||
|
|
@ -45,5 +45,6 @@ setup(
|
|||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue