File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 matrix :
1616 os : [ubuntu-20.04]
1717 python-version : ['3.8']
18- toxenv : [py38-django32, py38-django40 , quality]
18+ toxenv : [py38-django32, py38-django42 , quality]
1919
2020 steps :
2121 - uses : actions/checkout@v2
3636 run : tox
3737
3838 - name : Run Coverage
39- if : matrix.python-version == '3.8' && matrix.toxenv=='py38-django32 '
39+ if : matrix.python-version == '3.8' && matrix.toxenv=='py38-django42 '
4040 uses : codecov/codecov-action@v1
4141 with :
4242 flags : unittests
Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ Please See the `releases tab <https://github.com/openedx/xblock-lti-consumer/rel
1616Unreleased
1717~~~~~~~~~~
1818
19+ 9.6.0 - 2023-08-01
20+ ------------------
21+ * Added support for Django 4.2
22+
19239.5.7 - 2023-07-27
2024------------------
2125* Fixed ACS actions constant.
Original file line number Diff line number Diff line change 44from .apps import LTIConsumerApp
55from .lti_xblock import LtiConsumerXBlock
66
7- __version__ = '9.5.7 '
7+ __version__ = '9.6.0 '
Original file line number Diff line number Diff line change 1414)
1515
1616
17+ @admin .register (LtiConfiguration )
1718class LtiConfigurationAdmin (admin .ModelAdmin ):
1819 """
1920 Admin view for LtiConfiguration models.
@@ -23,6 +24,7 @@ class LtiConfigurationAdmin(admin.ModelAdmin):
2324 readonly_fields = ('location' , 'config_id' )
2425
2526
27+ @admin .register (CourseAllowPIISharingInLTIFlag )
2628class CourseAllowPIISharingInLTIFlagAdmin (KeyedConfigurationModelAdmin ):
2729 """
2830 Admin for enabling PII Sharing in LTI on course-by-course basis.
@@ -38,8 +40,6 @@ class CourseAllowPIISharingInLTIFlagAdmin(KeyedConfigurationModelAdmin):
3840 )
3941
4042
41- admin .site .register (CourseAllowPIISharingInLTIFlag , CourseAllowPIISharingInLTIFlagAdmin )
42- admin .site .register (LtiConfiguration , LtiConfigurationAdmin )
4343admin .site .register (LtiAgsLineItem )
4444admin .site .register (LtiAgsScore )
4545admin .site .register (LtiDlContentItem )
Original file line number Diff line number Diff line change 11[tox]
2- envlist = py38-django{32,40 }, quality
2+ envlist = py38-django{32,42 }, quality
33
44[testenv]
55whitelist_externals =
66 make
77deps =
88 django32: Django>=3.2,<4.0
9- django40 : Django>=4.0 ,<4.1
9+ django42 : Django>=4.2 ,<4.3
1010 -r{toxinidir}/requirements/test.txt
1111commands =
1212 make test
You can’t perform that action at this time.
0 commit comments