Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Publish Python 🐍 distributions 📦 to TestPyPI

on: pull_request
on:
push:
branches:
- master

jobs:
build-n-publish:
Expand Down
2 changes: 1 addition & 1 deletion adminsortable2/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.3'
__version__ = '1.0.4'
7 changes: 7 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ Release history
===============


1.0.4
-----
* Fix `#294`_: issue in 1.0.3 where ``install_requires`` unintentionally dropped django 2.2

.. _#294: https://github.com/jrief/django-admin-sortable2/issues/294

1.0.3
-----
* Adding support for Django 4 and Python 3.10.
Expand Down Expand Up @@ -34,6 +40,7 @@ Release history
* Fix `#207`_: Last item not displayed in stacked- and tabular inline admins,
if model doesn't have add permission.

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

0.7.7
-----
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def readfile(filename):
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[
'Django>=3.2,<4.1',
'Django>=2.2,<4.1',
],
packages=find_packages(exclude=['example', 'docs']),
include_package_data=True,
Expand Down