Skip to content

Commit 9305018

Browse files
authored
Merge pull request #295 from marksweb/fix/294
Added django 2.2 to supported versions and prepared for a 1.0.4 release
2 parents e836b84 + 6aec140 commit 9305018

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/publish-to-test-pypi.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Publish Python 🐍 distributions 📦 to TestPyPI
22

3-
on: pull_request
3+
on:
4+
push:
5+
branches:
6+
- master
47

58
jobs:
69
build-n-publish:

docs/source/changelog.rst

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

77

8+
1.0.4
9+
-----
10+
* Fix `#294`_: issue in 1.0.3 where ``install_requires`` unintentionally dropped django 2.2
11+
12+
.. _#294: https://github.com/jrief/django-admin-sortable2/issues/294
13+
814
1.0.3
915
-----
1016
* Adding support for Django 4 and Python 3.10.
@@ -34,6 +40,7 @@ Release history
3440
* Fix `#207`_: Last item not displayed in stacked- and tabular inline admins,
3541
if model doesn't have add permission.
3642

43+
.. _#207: https://github.com/jrief/django-admin-sortable2/issues/207
3744

3845
0.7.7
3946
-----

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def readfile(filename):
4646
platforms=['OS Independent'],
4747
classifiers=CLASSIFIERS,
4848
install_requires=[
49-
'Django>=3.2,<4.1',
49+
'Django>=2.2,<4.1',
5050
],
5151
packages=find_packages(exclude=['example', 'docs']),
5252
include_package_data=True,

0 commit comments

Comments
 (0)