Skip to content

Commit dba3c84

Browse files
authored
Release 1.0.3 - django 4 support (#292)
1 parent b2c9a3f commit dba3c84

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.github/workflows/django.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
max-parallel: 4
1515
matrix:
1616
python-version: ["3.7", "3.8", "3.9", "3.10"]
17-
Django-version: [<3.2, <4.0, <4.1]
17+
Django-version: [<3.0, <4.0, <4.1] # Should use 2.2.x, 3.2.x, 4.0.x
1818

1919
steps:
2020
- uses: actions/checkout@v2

adminsortable2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.2'
1+
__version__ = '1.0.3'

docs/source/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Release history
55
===============
66

77

8+
1.0.3
9+
-----
10+
* Adding support for Django 4 and Python 3.10.
11+
812
1.0.2
913
-----
1014
* Fix regression introduced in 1.0.1, adding double item rows on SortableInlineAdminMixin and

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ def readfile(filename):
2424
'Programming Language :: Python :: 3.7',
2525
'Programming Language :: Python :: 3.8',
2626
'Programming Language :: Python :: 3.9',
27+
'Programming Language :: Python :: 3.10',
2728
'Framework :: Django',
29+
'Framework :: Django :: 2.2',
2830
'Framework :: Django :: 3.2',
2931
'Framework :: Django :: 4.0',
3032
]

0 commit comments

Comments
 (0)