mirror of
https://github.com/jazzband/dj-database-url.git
synced 2026-04-24 16:54:44 +00:00
Support Django 5.2
This commit is contained in:
parent
8501773f73
commit
6350900a02
3 changed files with 20 additions and 11 deletions
29
.github/workflows/test.yml
vendored
29
.github/workflows/test.yml
vendored
|
|
@ -6,19 +6,26 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
||||
django-version: ["4.2", "5.1"]
|
||||
python-version:
|
||||
- "3.9"
|
||||
- "3.10"
|
||||
- "3.11"
|
||||
- "3.12"
|
||||
- "3.13"
|
||||
django-version:
|
||||
- "4.2"
|
||||
- "5.0"
|
||||
- "5.1"
|
||||
- "5.2"
|
||||
exclude:
|
||||
# Python 3.11 is not compatible with 3.2
|
||||
- python-version: "3.11"
|
||||
django-version: "3.2"
|
||||
- python-version: "3.12"
|
||||
django-version: "3.2"
|
||||
- python-version: "3.13"
|
||||
django-version: "3.2"
|
||||
# django 5.x is not compatible with python 3.9 or lower
|
||||
- python-version: "3.9"
|
||||
django-version: "5.0"
|
||||
- python-version: "3.9"
|
||||
django-version: "5.1"
|
||||
- python-version: "3.9"
|
||||
django-version: "5.2"
|
||||
- python-version: "3.13"
|
||||
django-version: "5.0"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
|
@ -32,7 +39,7 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: |
|
||||
pip install -r requirements.txt
|
||||
pip install "Django~=${{ matrix.django-version }}.0" .
|
||||
pip install "django~=${{ matrix.django-version }}.0a1" .
|
||||
|
||||
- name: Run type checking
|
||||
run: |
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
## Unreleased
|
||||
|
||||
* Drop dependency on `typing_extensions`.
|
||||
* Add Django 5.2 support.
|
||||
|
||||
## v2.3.0 (2024-10-23)
|
||||
* Remove Python 3.8 support.
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -32,6 +32,7 @@ setup(
|
|||
"Framework :: Django :: 4.2",
|
||||
"Framework :: Django :: 5.0",
|
||||
"Framework :: Django :: 5.1",
|
||||
"Framework :: Django :: 5.2",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: BSD License",
|
||||
"Operating System :: OS Independent",
|
||||
|
|
|
|||
Loading…
Reference in a new issue