Skip to content

Commit

Permalink
Drop support for Django versions before 4.2 (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwheeler authored May 7, 2024
1 parent 8a1ede2 commit b570816
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
django: ["3.2.0", "4.0.0", "4.1.0", "4.2.0", "5.0.0"]
django: ["4.2.0", "5.0.0"]
exclude:
- django: "5.0.0"
python: "3.8"
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def types(session):
[
(python, django)
for python in ("3.8", "3.9", "3.10", "3.11", "3.12")
for django in ("3.2.0", "4.0.0", "4.1.0", "4.2.0", "5.0.0")
for django in ("4.2.0", "5.0.0")
if (python, django) not in [("3.8", "5.0.0"), ("3.9", "5.0.0")]
],
)
Expand Down
7 changes: 2 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ project_urls =
Documentation = https://academic-innovation.github.io/django-lti/
classifiers =
Development Status :: 4 - Beta
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Intended Audience :: Developers
Expand All @@ -28,8 +25,8 @@ classifiers =
[options]
python_requires = >=3.8
install_requires =
django >= 3.2
pylti1p3 >= 1.10
django >= 4.2
pylti1p3 >= 2.0
packages = find:
include_package_data = true
zip_safe = false
Expand Down

0 comments on commit b570816

Please sign in to comment.