Skip to content

Commit

Permalink
Django 5.1 support (#113)
Browse files Browse the repository at this point in the history
* Add support for Django 5.1

* Bump version to 0.7.0
  • Loading branch information
michaelwheeler authored Aug 13, 2024
1 parent 9585eae commit f548a01
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,16 @@ jobs:
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
django: ["4.2.0", "5.0.0"]
django: ["4.2.0", "5.0.0", "5.1.0"]
exclude:
- django: "5.0.0"
python: "3.8"
- django: "5.0.0"
python: "3.9"
- django: "5.1.0"
python: "3.8"
- django: "5.1.0"
python: "3.9"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
project = "django-lti"
copyright = "2024, Center for Academic Innovation"
author = "Center for Academic Innovation"
release = "0.6.0"
release = "0.7.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion lti_tool/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.0"
__version__ = "0.7.0"
5 changes: 3 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ def types(session):
[
(python, django)
for python in ("3.8", "3.9", "3.10", "3.11", "3.12")
for django in ("4.2.0", "5.0.0")
if (python, django) not in [("3.8", "5.0.0"), ("3.9", "5.0.0")]
for django in ("4.2.0", "5.0.0", "5.1.0")
if (python, django)
not in [("3.8", "5.0.0"), ("3.8", "5.1.0"), ("3.9", "5.0.0"), ("3.9", "5.1.0")]
],
)
def test(session, django):
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ classifiers =
Development Status :: 4 - Beta
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Framework :: Django :: 5.1
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Expand Down

0 comments on commit f548a01

Please sign in to comment.