Skip to content

Commit

Permalink
Support django 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DoctorJohn committed Jun 17, 2024
1 parent a3e505e commit 5fe29a4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 80 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
strategy:
max-parallel: 4
matrix:
django-version: ["3.2", "4.1", "4.2"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
django-version: ["3.2", "4.1", "4.2", "5.0"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
86 changes: 11 additions & 75 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,13 @@ classifiers = [
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -31,7 +30,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.10"
django = ">=2.2"

[tool.poetry.group.dev.dependencies]
Expand Down

0 comments on commit 5fe29a4

Please sign in to comment.