File tree Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 13
13
matrix :
14
14
os : [ubuntu-20.04]
15
15
python-version : ['3.8']
16
- toxenv : [django32, django40 ]
16
+ toxenv : [django32, django42 ]
17
17
steps :
18
18
- uses : actions/checkout@v2
19
19
40
40
run : xvfb-run --server-args=-ac -- tox -e ${{ matrix.toxenv }}
41
41
42
42
- name : Upload coverage to CodeCov
43
- if : matrix.python-version == '3.8' && matrix.toxenv == 'django32 '
43
+ if : matrix.python-version == '3.8' && matrix.toxenv == 'django42 '
44
44
uses : codecov/codecov-action@v3
45
45
with :
46
46
file : ./coverage.xml
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ Change history for XBlock SDK
4
4
5
5
These are notable changes in XBlock.
6
6
7
+ 0.7.0
8
+ -----
9
+ * Added support for Django 4.2
10
+
7
11
0.6.0
8
12
-----
9
13
* Removed boto usage.
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ whitelist_externals =
15
15
make
16
16
deps =
17
17
django32: Django>=3.2,<4.0
18
- django40 : Django>=4.0 ,<4.1
18
+ django42 : Django>=4.2 ,<4.3
19
19
-r{toxinidir}/requirements/test.txt
20
20
passenv =
21
21
DISPLAY
Original file line number Diff line number Diff line change 2
2
Provide a djangoapp for XBlock development
3
3
"""
4
4
5
- __version__ = '0.6 .0'
5
+ __version__ = '0.7 .0'
Original file line number Diff line number Diff line change 9
9
from .models import XBlockState
10
10
11
11
12
+ @admin .register (XBlockState )
12
13
class XBlockStateAdmin (admin .ModelAdmin ):
13
14
"""Basic admin operations for XBlockState model.
14
15
@@ -25,4 +26,3 @@ class XBlockStateAdmin(admin.ModelAdmin):
25
26
]
26
27
27
28
28
- admin .site .register (XBlockState , XBlockStateAdmin )
You can’t perform that action at this time.
0 commit comments