File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 23
23
matrix :
24
24
python-version : ["3.8", "3.9", "3.10"]
25
25
node-version : ["16.x"]
26
- django-version : ["4.0.*", "4.1b1 "]
26
+ django-version : ["4.0.*", "4.1.*", "4.2.* "]
27
27
28
28
steps :
29
29
- uses : actions/checkout@v3
46
46
- name : Patch templates
47
47
run : |
48
48
mkdir -p adminsortable2/templates/adminsortable2/edit_inline
49
- DJANGO_VERSIONS=("4.0" "4.1")
49
+ DJANGO_VERSIONS=("4.0" "4.1", "4.2" )
50
50
for django_version in ${DJANGO_VERSIONS[@]}; do
51
51
echo $django_version
52
52
curl --silent --output adminsortable2/templates/adminsortable2/edit_inline/stacked-django-$django_version.html https://raw.githubusercontent.com/django/django/stable/$django_version.x/django/contrib/admin/templates/admin/edit_inline/stacked.html
Original file line number Diff line number Diff line change 5
5
* .egg-info
6
6
* .sqlite3
7
7
* .coverage
8
+ * .tsbuildinfo
8
9
* ~
9
10
.DS_Store
10
11
.tmp *
Original file line number Diff line number Diff line change 2
2
3
3
## Release history of [ django-admin-sortable2] ( https://github.com/jrief/django-admin-sortable2/ )
4
4
5
+ ### 2.1.6
6
+ - Add support for Django-4.2.
7
+
5
8
### 2.1.5
6
9
- Fix: In ` SortableInlineAdminMixin.get_fields() ` , convert potential tuple to list in order to append extra elements.
7
10
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ def readfile(filename):
27
27
'Framework :: Django' ,
28
28
'Framework :: Django :: 4.0' ,
29
29
'Framework :: Django :: 4.1' ,
30
+ 'Framework :: Django :: 4.2' ,
30
31
]
31
32
32
33
You can’t perform that action at this time.
0 commit comments