-
Notifications
You must be signed in to change notification settings - Fork 657
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pushed dev version of 2.15.x to 2.15.8
- Loading branch information
1 parent
c340e3f
commit cf3a52f
Showing
6 changed files
with
96 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import django | ||
|
||
VERSION = '2.15.7' | ||
VERSION = "2.15.8" | ||
|
||
if django.VERSION < (3, 2): | ||
default_app_config = 'grappelli.apps.GrappelliConfig' | ||
default_app_config = "grappelli.apps.GrappelliConfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,30 +8,30 @@ def read(fname): | |
|
||
|
||
setup( | ||
name='django-grappelli', | ||
version='2.15.7', | ||
description='A jazzy skin for the Django Admin-Interface.', | ||
long_description=read('README.rst'), | ||
url='http://django-grappelli.readthedocs.org', | ||
download_url='', | ||
author='Patrick Kranzlmueller, Axel Swoboda (vonautomatisch)', | ||
author_email='[email protected]', | ||
license='BSD', | ||
packages=find_packages(exclude=['test_project']), | ||
name="django-grappelli", | ||
version="2.15.8", | ||
description="A jazzy skin for the Django Admin-Interface.", | ||
long_description=read("README.rst"), | ||
url="http://django-grappelli.readthedocs.org", | ||
download_url="", | ||
author="Patrick Kranzlmueller, Axel Swoboda (vonautomatisch)", | ||
author_email="[email protected]", | ||
license="BSD", | ||
packages=find_packages(exclude=["test_project"]), | ||
include_package_data=True, | ||
install_requires=[], | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Web Environment', | ||
'Framework :: Django', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Web Environment", | ||
"Framework :: Django", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
], | ||
zip_safe=False, | ||
) |