Skip to content
This repository has been archived by the owner on Nov 8, 2021. It is now read-only.

Commit

Permalink
Remove false ssl verification (#56)
Browse files Browse the repository at this point in the history
* Remove the false SSL verification.

* Upgrade version to 1.4.2.
  • Loading branch information
huxuan authored Jul 24, 2018
1 parent f59b44a commit 48ec984
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions cognitive_face/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,7 @@ def request(method, url, data=None, json=None, headers=None, params=None):
params=params,
data=data,
json=json,
headers=headers,
verify=False)
headers=headers)

# Handle result and raise custom exception when something wrong.
result = None
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def readme():

setup(
name='cognitive_face',
version='1.4.1',
version='1.4.2',
packages=find_packages(exclude=['tests']),
install_requires=['requests'],
author='Microsoft',
Expand Down

0 comments on commit 48ec984

Please sign in to comment.