Skip to content

Commit

Permalink
Add official support for Django 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RealOrangeOne authored Dec 6, 2023
1 parent 5430a0a commit cda4010
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ on: [pull_request, push]

jobs:
build:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
django-version: ["3.2", "4.0", "4.1", "4.2"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
django-version: ["3.2", "4.1", "4.2", "5.0"]
exclude:
- django-version: "5.0"
python-version: "3.8"
- django-version: "5.0"
python-version: "3.9"

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"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",
Expand Down

0 comments on commit cda4010

Please sign in to comment.