Skip to content

Commit 231cc2f

Browse files
authored
Merge pull request #7 from getyoti/X-SDK
[SDK-128]: Renamed X-SDK to X-Yoti-SDK
2 parents 6b6859b + 4ae48e4 commit 231cc2f

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
yoti>=2.0.0
1+
yoti>=2.0.1
22
Django>=1.8

plugins/django_yoti/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
url='https://github.com/lampkicking/yoti-sdk-server-python/plugins/django_yoti',
1616
author='',
1717
author_email='',
18-
install_requires=['django>=1.8', 'yoti>=2.0.0'],
18+
install_requires=['django>=1.8', 'yoti>=2.0.1'],
1919
classifiers=[
2020
'Development Status :: 3 - Alpha',
2121
'License :: OSI Approved :: MIT License',
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Flask>=0.10
2-
yoti>=2.0.0
2+
yoti>=2.0.1

plugins/flask_yoti/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
url='https://github.com/lampkicking/yoti-sdk-server-python/plugins/flask_yoti',
1515
author='',
1616
author_email='',
17-
install_requires=['flask>=0.10', 'yoti>=2.0.0'],
17+
install_requires=['flask>=0.10', 'yoti>=2.0.1'],
1818
classifiers=[
1919
'Development Status :: 3 - Alpha',
2020
'License :: OSI Approved :: MIT License',

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
from setuptools import setup, find_packages
33

4-
VERSION = '2.0.0'
4+
VERSION = '2.0.1'
55
long_description = 'This package contains the tools you need to quickly ' \
66
'integrate your Python back-end with Yoti, so that your ' \
77
'users can share their identity details with your ' \

yoti_python_sdk/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def __get_request_headers(self, path):
9595
return {
9696
'X-Yoti-Auth-Key': self.__crypto.get_public_key(),
9797
'X-Yoti-Auth-Digest': self.__crypto.sign('GET&' + path),
98-
'X-SDK': SDK_IDENTIFIER,
98+
'X-Yoti-SDK': SDK_IDENTIFIER,
9999
'Content-Type': 'application/json',
100100
'Accept': 'application/json'
101101
}

yoti_python_sdk/tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def expected_headers(x_yoti_auth_key, x_yoti_auth_digest):
3939
'Accept': 'application/json',
4040
'X-Yoti-Auth-Key': x_yoti_auth_key,
4141
'X-Yoti-Auth-Digest': x_yoti_auth_digest,
42-
'X-SDK': SDK_IDENTIFIER
42+
'X-Yoti-SDK': SDK_IDENTIFIER
4343
}
4444

4545

0 commit comments

Comments
 (0)