-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #212 from getyoti/Release/2.12.2
Release/2.12.2
- Loading branch information
Showing
16 changed files
with
97 additions
and
85 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: pip | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 3 | ||
target-branch: development | ||
reviewers: | ||
- echarrod | ||
- davidgrayston | ||
assignees: | ||
- echarrod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
yoti>=2.9.0 | ||
yoti>=2.12.1 | ||
python-dotenv>=0.7.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
flask>=1.1.2 | ||
python-dotenv>=0.13.0 | ||
yoti>=2.11.2 | ||
yoti>=2.12.1 | ||
filetype>=1.0.7 | ||
pyopenssl>=19.1.0 | ||
pyopenssl>=19.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
cryptography>=2.3 | ||
Django==2.2.8 | ||
django-sslserver>=0.2.0 | ||
django>=3.0.7 | ||
django-sslserver>=0.22.0 | ||
python-dotenv>=0.7.1 | ||
requests>=2.20.0 | ||
urllib3>=1.24.2 | ||
yoti>=2.9.0 | ||
yoti>=2.12.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
cryptography>=2.3 | ||
Flask>=1.0.4 | ||
cffi>=1.14.0 | ||
flask>=1.0.4 | ||
jinja2>=2.8.1 | ||
pyopenssl>=19.0.0 | ||
python-dotenv>=0.7.1 | ||
requests>=2.20.0 | ||
urllib3>=1.24.2 | ||
yoti>=2.9.0 | ||
yoti>=2.12.1 | ||
werkzeug>=1.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
asn1==2.2.0 | ||
cryptography>=2.8.0 | ||
asn1==2.2.0 # asn1 2.3.0 introduces enum34 as a dependency, which causes problems on some envs | ||
cryptography==2.8.0 | ||
cffi>=1.14.0 | ||
future==0.18.2 | ||
itsdangerous==0.24 | ||
pbr==1.10.0 | ||
protobuf==3.11.3 | ||
pyopenssl==18.0.0 | ||
protobuf==3.12.2 | ||
pyopenssl==19.1.0 | ||
PyYAML==5.2 # PyYAML 5.3 does not support Python 3.4 | ||
pytz==2020.1 | ||
requests>=2.20.0 | ||
urllib3>=1.24.3 | ||
deprecated==1.2.6 | ||
wheel==0.24.0 | ||
deprecated==1.2.10 | ||
wheel==0.33.6 | ||
iso8601==0.1.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,6 @@ | |
from setuptools import find_packages | ||
from setuptools import setup | ||
|
||
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 " | ||
"application in a secure and trusted way." | ||
) | ||
|
||
version = {} | ||
with open("yoti_python_sdk/version.py") as fp: | ||
exec(fp.read(), version) | ||
|
@@ -19,12 +12,13 @@ | |
packages=find_packages(include=["yoti_python_sdk", "yoti_python_sdk.*"]), | ||
license="MIT", | ||
description="The Yoti Python SDK, providing API support for Login, Verify (2FA) and Age Verification.", | ||
long_description=long_description, | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/getyoti/yoti-python-sdk", | ||
author="Yoti", | ||
author_email="[email protected]", | ||
install_requires=[ | ||
"deprecated==1.2.6", | ||
"deprecated==1.2.10", | ||
"cryptography>=2.2.1", | ||
"protobuf>=3.1.0", | ||
"requests>=2.11.1", | ||
|
@@ -35,15 +29,15 @@ | |
], | ||
extras_require={ | ||
"examples": [ | ||
"Django>1.11.16", | ||
"Flask>=0.10", | ||
"Django>=3.0.7", | ||
"Flask>=1.0.4", | ||
"python-dotenv>=0.7.1", | ||
"django-sslserver>=0.2", | ||
"Werkzeug==0.15.3", | ||
"django-sslserver>=0.22.0", | ||
"Werkzeug==1.0.1", | ||
], | ||
"dev": [ | ||
"pre-commit==1.17.0", | ||
"pytest>=3.6.0", | ||
"pytest>=4.6.0", | ||
"pytest-cov>=2.7.1", | ||
"pylint==1.9.4", | ||
"pylint-exit>=1.1.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# -*- coding: utf-8 -*- | ||
__version__ = "2.12.1" | ||
__version__ = "2.12.2" |