mirror of
https://github.com/jazzband/dj-database-url.git
synced 2026-03-16 22:20:24 +00:00
Add support to python 3.11 (#189)
This commit is contained in:
parent
1baa73a4f0
commit
ffe20b8abf
2 changed files with 10 additions and 3 deletions
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
|
|
@ -4,8 +4,9 @@ jobs:
|
|||
test:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python-version: ["3.7", "3.8", "3.9", "3.10"]
|
||||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
||||
django-version: ["3.2", "4.0", "4.1"]
|
||||
exclude:
|
||||
# Python 3.6 is not compatible with 4.0
|
||||
|
|
@ -20,7 +21,12 @@ jobs:
|
|||
# Python 3.7 is not compatible with 4.1
|
||||
- python-version: "3.7"
|
||||
django-version: "4.1"
|
||||
fail-fast: false
|
||||
# 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"
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
|
@ -42,4 +48,4 @@ jobs:
|
|||
coverage report
|
||||
coverage xml
|
||||
|
||||
- uses: codecov/codecov-action@v2
|
||||
- uses: codecov/codecov-action@v3
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -41,5 +41,6 @@ setup(
|
|||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue