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

Commit 48ec984

Browse files
authored
Remove false ssl verification (#56)
* Remove the false SSL verification. * Upgrade version to 1.4.2.
1 parent f59b44a commit 48ec984

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

cognitive_face/util.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ def request(method, url, data=None, json=None, headers=None, params=None):
8989
params=params,
9090
data=data,
9191
json=json,
92-
headers=headers,
93-
verify=False)
92+
headers=headers)
9493

9594
# Handle result and raise custom exception when something wrong.
9695
result = None

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def readme():
2020

2121
setup(
2222
name='cognitive_face',
23-
version='1.4.1',
23+
version='1.4.2',
2424
packages=find_packages(exclude=['tests']),
2525
install_requires=['requests'],
2626
author='Microsoft',

0 commit comments

Comments
 (0)