Skip to content

Commit 5bfd60a

Browse files
committed
v1.8.0
1 parent 8d8dbef commit 5bfd60a

File tree

3 files changed

+44
-41
lines changed

3 files changed

+44
-41
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [1.8.0]
4+
5+
Added/fixed support for Django 2.2
6+
37
## [1.6.1](https://github.com/crucialfelix/django-ajax-selects/tree/1.6.1) (2017-09-09)
48
[Full Changelog](https://github.com/crucialfelix/django-ajax-selects/compare/1.6.0...1.6.1)
59

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ Read the full documention here: [outside of the admin](http://django-ajax-select
7777

7878
## Compatibility
7979

80-
* Django >=1.8, <=2.1
81-
* Python >=2.7, 3.3+
80+
* Django >=1.8, <3.0
81+
* Python >=2.7, >=3.5
8282

8383
## Contributors
8484

setup.py

Lines changed: 38 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,41 @@
33
from setuptools import setup
44

55
setup(
6-
name='django-ajax-selects',
7-
version='1.7.1',
8-
description='Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete.',
9-
author='Chris Sattinger',
10-
author_email='[email protected]',
11-
url='https://github.com/crucialfelix/django-ajax-selects/',
12-
packages=['ajax_select'],
13-
package_data={
14-
'ajax_select':
15-
[
16-
'*.py',
17-
'*.txt',
18-
'*.md',
19-
'static/ajax_select/css/*',
20-
'static/ajax_select/images/*',
21-
'static/ajax_select/js/*',
22-
'templates/ajax_select/*.html'
23-
]
24-
},
25-
include_package_data=True,
26-
zip_safe=False,
27-
license="MIT",
28-
classifiers=[
29-
"Programming Language :: Python",
30-
"Programming Language :: Python :: 2",
31-
"Programming Language :: Python :: 3",
32-
"Development Status :: 5 - Production/Stable",
33-
'Environment :: Web Environment',
34-
"Intended Audience :: Developers",
35-
"License :: OSI Approved :: MIT License",
36-
"Operating System :: OS Independent",
37-
"Topic :: Software Development :: Libraries :: Python Modules",
38-
"Topic :: Software Development :: User Interfaces",
39-
"Framework :: Django",
40-
],
41-
long_description="""\
6+
name="django-ajax-selects",
7+
version="1.8.0",
8+
description="Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete.",
9+
author="Chris Sattinger",
10+
author_email="[email protected]",
11+
url="https://github.com/crucialfelix/django-ajax-selects/",
12+
packages=["ajax_select"],
13+
package_data={
14+
"ajax_select": [
15+
"*.py",
16+
"*.txt",
17+
"*.md",
18+
"static/ajax_select/css/*",
19+
"static/ajax_select/images/*",
20+
"static/ajax_select/js/*",
21+
"templates/ajax_select/*.html",
22+
]
23+
},
24+
include_package_data=True,
25+
zip_safe=False,
26+
license="MIT",
27+
classifiers=[
28+
"Programming Language :: Python",
29+
"Programming Language :: Python :: 2",
30+
"Programming Language :: Python :: 3",
31+
"Development Status :: 5 - Production/Stable",
32+
"Environment :: Web Environment",
33+
"Intended Audience :: Developers",
34+
"License :: OSI Approved :: MIT License",
35+
"Operating System :: OS Independent",
36+
"Topic :: Software Development :: Libraries :: Python Modules",
37+
"Topic :: Software Development :: User Interfaces",
38+
"Framework :: Django",
39+
],
40+
long_description="""\
4241
Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete.
4342
4443
- Customize search query
@@ -50,7 +49,7 @@
5049
- Integrate with other UI elements elsewhere on the page using the javascript API
5150
- Works in Admin as well as in normal views
5251
53-
- Django >=1.8, <=2.1
54-
- Python >=2.7, <=3.7
55-
"""
52+
- Django >=1.8, <3.0
53+
- Python >=2.7, >=3.5
54+
""",
5655
)

0 commit comments

Comments
 (0)