Skip to content

Commit

Permalink
Update dependencies to Django 5.0 and adjust CI workflows
Browse files Browse the repository at this point in the history
Updated `pyproject.toml` files to require Django 5.0 instead of 4.2. Also streamlined GitHub Actions workflows by removing outdated sizer checks, ensuring compatibility with Django 5.0, and modifying matrix configurations for the updated Django version.

Signed-off-by: Steven K <steven@pointcircle.com>
  • Loading branch information
rh0dium committed Sep 5, 2024
1 parent 196a01f commit 451a557
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
max-parallel: 4
matrix:
db: [ sqlite, mariadb ]
django-version: ["~=4.2.0", "~=5.0"]
django-version: [ "~=5.0" ]
python-version: [ "3.12" ]

services:
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
Expand All @@ -30,7 +29,7 @@ classifiers = [
"Topic :: Utilities",
]
dependencies = [
"django>=4.2",
"django>=5.0",
"python-dateutil",
]

Expand Down

0 comments on commit 451a557

Please sign in to comment.