Skip to content

Commit

Permalink
chore: remove the [security] from requests
Browse files Browse the repository at this point in the history
As it turns out, we don't support the versions of python
which would have needed the extra flair (namely 2.6, 3.2 and 3.3).
  • Loading branch information
LeoErcolanelli committed Jan 22, 2018
1 parent 1a67271 commit bce43ab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
CHANGELOG

2017-01-22 1.15.3
* Remove the `[security]` flair of `requests`

2017-12-18 1.15.2
* Add 'page' and 'hitsPerPage' to list_user_ids

Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "1.15.2"
VERSION = "1.15.3"
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
packages=['algoliasearch'],
include_package_data=True,
zip_safe=False, # Because of the certificate
install_requires=['requests[security] >= 2.9.1'],
install_requires=['requests >= 2.9.1'],
description='Algolia Search API Client for Python',
long_description=README,
author='Algolia Team',
Expand All @@ -51,13 +51,11 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
Expand Down

0 comments on commit bce43ab

Please sign in to comment.