mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
Pin python-dateutil>=2.7.0 (#401)
This commit is contained in:
parent
2f914c17ce
commit
f68af3033d
2 changed files with 5 additions and 1 deletions
|
|
@ -4,6 +4,10 @@
|
|||
|
||||
- feat: Display the diff for deleted objects in the admin ([#396](https://github.com/jazzband/django-auditlog/pull/396))
|
||||
|
||||
#### Fixes
|
||||
|
||||
- fix: Pin `python-dateutil` to 2.7.0 or higher for compatibility with Python 3.10 ([#401](https://github.com/jazzband/django-auditlog/pull/401))
|
||||
|
||||
## 2.1.0 (2022-06-27)
|
||||
|
||||
#### Improvements
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -27,7 +27,7 @@ setup(
|
|||
description="Audit log app for Django",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
install_requires=["python-dateutil>=2.6.0"],
|
||||
install_requires=["python-dateutil>=2.7.0"],
|
||||
zip_safe=False,
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
|
|
|
|||
Loading…
Reference in a new issue