Skip to content

Commit 8e2398c

Browse files
committed
SDK-778: Update Django required version to prevent compatibility issue with Python 3.7+
1 parent 9d2fc78 commit 8e2398c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
yoti>=2.5.0
2-
Django==1.11
2+
Django>1.11.16
33
python-dotenv>=0.7.1
44
django-sslserver

examples/yoti_example_django/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cffi==1.11.5 # via cryptography
1111
chardet==3.0.4 # via requests
1212
cryptography==2.2.2 # via pyopenssl, yoti
1313
django-sslserver==0.20
14-
django==1.11
14+
django==2.1.7
1515
future==0.16.0 # via yoti
1616
idna==2.7 # via cryptography, requests
1717
protobuf==3.6.0 # via yoti

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
install_requires=['cryptography>=2.2.1', 'protobuf>=3.1.0',
2121
'requests>=2.11.1', 'future>=0.11.0', 'asn1==2.2.0', 'pyopenssl>=18.0.0'],
2222
extras_require={
23-
'examples': ['Django>=1.8', 'Flask>=0.10', 'python-dotenv>=0.7.1', 'django-sslserver>=0.2', 'Werkzeug==0.11.15'],
23+
'examples': ['Django>1.11.16', 'Flask>=0.10', 'python-dotenv>=0.7.1', 'django-sslserver>=0.2',
24+
'Werkzeug==0.11.15'],
2425
},
2526
classifiers=[
2627
'Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)