Skip to content

Commit

Permalink
v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
crucialfelix committed Dec 28, 2019
1 parent 8d8dbef commit 5bfd60a
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 41 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [1.8.0]

Added/fixed support for Django 2.2

## [1.6.1](https://github.com/crucialfelix/django-ajax-selects/tree/1.6.1) (2017-09-09)
[Full Changelog](https://github.com/crucialfelix/django-ajax-selects/compare/1.6.0...1.6.1)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ Read the full documention here: [outside of the admin](http://django-ajax-select

## Compatibility

* Django >=1.8, <=2.1
* Python >=2.7, 3.3+
* Django >=1.8, <3.0
* Python >=2.7, >=3.5

## Contributors

Expand Down
77 changes: 38 additions & 39 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,42 +3,41 @@
from setuptools import setup

setup(
name='django-ajax-selects',
version='1.7.1',
description='Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete.',
author='Chris Sattinger',
author_email='[email protected]',
url='https://github.com/crucialfelix/django-ajax-selects/',
packages=['ajax_select'],
package_data={
'ajax_select':
[
'*.py',
'*.txt',
'*.md',
'static/ajax_select/css/*',
'static/ajax_select/images/*',
'static/ajax_select/js/*',
'templates/ajax_select/*.html'
]
},
include_package_data=True,
zip_safe=False,
license="MIT",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
'Environment :: Web Environment',
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
"Framework :: Django",
],
long_description="""\
name="django-ajax-selects",
version="1.8.0",
description="Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete.",
author="Chris Sattinger",
author_email="[email protected]",
url="https://github.com/crucialfelix/django-ajax-selects/",
packages=["ajax_select"],
package_data={
"ajax_select": [
"*.py",
"*.txt",
"*.md",
"static/ajax_select/css/*",
"static/ajax_select/images/*",
"static/ajax_select/js/*",
"templates/ajax_select/*.html",
]
},
include_package_data=True,
zip_safe=False,
license="MIT",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
"Framework :: Django",
],
long_description="""\
Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete.
- Customize search query
Expand All @@ -50,7 +49,7 @@
- Integrate with other UI elements elsewhere on the page using the javascript API
- Works in Admin as well as in normal views
- Django >=1.8, <=2.1
- Python >=2.7, <=3.7
"""
- Django >=1.8, <3.0
- Python >=2.7, >=3.5
""",
)

0 comments on commit 5bfd60a

Please sign in to comment.