Skip to content

Commit 5f48d38

Browse files
anatoliisdrudkiewicz
authored andcommitted
Changing package name
1 parent 3da57c6 commit 5f48d38

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+40
-37
lines changed

README.md

Lines changed: 3 additions & 3 deletions

plugins/django_yoti/django_yoti/tests/test_views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from django.test import TestCase, Client, RequestFactory
22
from django.http.response import HttpResponse, HttpResponseRedirectBase
33
from django.contrib.sessions.middleware import SessionMiddleware
4-
from yoti.activity_details import ActivityDetails
4+
from yoti_python_sdk.activity_details import ActivityDetails
55

66
from ..views import profile
77

plugins/django_yoti/django_yoti/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from yoti import Client
1+
from yoti_python_sdk import Client
22
from django.shortcuts import render, redirect
33
from django.urls import reverse
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
yoti>=0.1.0
1+
yoti-python-sdk>=0.1.0
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>=0.1.0'],
18+
install_requires=['django>=1.8', 'yoti-python-sdk>=0.1.0'],
1919
classifiers=[
2020
'Development Status :: 3 - Alpha',
2121
'License :: OSI Approved :: MIT License',

plugins/flask_yoti/flask_yoti/flask_yoti.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
redirect,
99
url_for,
1010
)
11-
from yoti import Client
11+
from yoti_python_sdk import Client
1212

1313
from .context_storage import activity_details_storage
1414
from .decorators import yoti_authenticated

plugins/flask_yoti/flask_yoti/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from flask_yoti import flask_yoti_blueprint
66
from flask_yoti.context_processors import yoti_context
77

8-
from yoti.activity_details import ActivityDetails
8+
from yoti_python_sdk.activity_details import ActivityDetails
99

1010

1111
@pytest.fixture(scope='module')
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Flask>=0.10
2-
yoti>=0.1.0
2+
yoti-python-sdk>=0.1.0

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>=0.1.0'],
17+
install_requires=['flask>=0.10', 'yoti-python-sdk>=0.1.0'],
1818
classifiers=[
1919
'Development Status :: 3 - Alpha',
2020
'License :: OSI Approved :: MIT License',

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[pytest]
2-
testpaths = yoti/tests
2+
testpaths = yoti_python_sdk/tests
33
norecursedirs = venv

0 commit comments

Comments
 (0)