Skip to content

Commit

Permalink
Merge pull request #7 from getyoti/X-SDK
Browse files Browse the repository at this point in the history
[SDK-128]: Renamed X-SDK to X-Yoti-SDK
  • Loading branch information
echarrod authored Oct 13, 2017
2 parents 6b6859b + 4ae48e4 commit 231cc2f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion plugins/django_yoti/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
yoti>=2.0.0
yoti>=2.0.1
Django>=1.8
2 changes: 1 addition & 1 deletion plugins/django_yoti/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
url='https://github.com/lampkicking/yoti-sdk-server-python/plugins/django_yoti',
author='',
author_email='',
install_requires=['django>=1.8', 'yoti>=2.0.0'],
install_requires=['django>=1.8', 'yoti>=2.0.1'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
Expand Down
2 changes: 1 addition & 1 deletion plugins/flask_yoti/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Flask>=0.10
yoti>=2.0.0
yoti>=2.0.1
2 changes: 1 addition & 1 deletion plugins/flask_yoti/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
url='https://github.com/lampkicking/yoti-sdk-server-python/plugins/flask_yoti',
author='',
author_email='',
install_requires=['flask>=0.10', 'yoti>=2.0.0'],
install_requires=['flask>=0.10', 'yoti>=2.0.1'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages

VERSION = '2.0.0'
VERSION = '2.0.1'
long_description = 'This package contains the tools you need to quickly ' \
'integrate your Python back-end with Yoti, so that your ' \
'users can share their identity details with your ' \
Expand Down
2 changes: 1 addition & 1 deletion yoti_python_sdk/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def __get_request_headers(self, path):
return {
'X-Yoti-Auth-Key': self.__crypto.get_public_key(),
'X-Yoti-Auth-Digest': self.__crypto.sign('GET&' + path),
'X-SDK': SDK_IDENTIFIER,
'X-Yoti-SDK': SDK_IDENTIFIER,
'Content-Type': 'application/json',
'Accept': 'application/json'
}
2 changes: 1 addition & 1 deletion yoti_python_sdk/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def expected_headers(x_yoti_auth_key, x_yoti_auth_digest):
'Accept': 'application/json',
'X-Yoti-Auth-Key': x_yoti_auth_key,
'X-Yoti-Auth-Digest': x_yoti_auth_digest,
'X-SDK': SDK_IDENTIFIER
'X-Yoti-SDK': SDK_IDENTIFIER
}


Expand Down

0 comments on commit 231cc2f

Please sign in to comment.