Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove the [security] from requests #335

Merged
merged 1 commit into from
Mar 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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