Skip to content

Commit e0ed5c8

Browse files
committed
updated-libraries
1 parent 6fe15da commit e0ed5c8

File tree

3 files changed

+54
-50
lines changed

3 files changed

+54
-50
lines changed

Diff for: requirements.in

+16-15
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
asn1==2.2.0 # asn1 2.3.0 introduces enum34 as a dependency, which causes problems on some envs
2-
cryptography==2.8.0
3-
cffi==1.14.3
4-
future==0.18.2
5-
itsdangerous==1.1.0
6-
pbr==1.10.0
7-
protobuf==4.21.12
8-
pyopenssl==19.1.0
9-
PyYAML==5.2 # PyYAML 5.3 does not support Python 3.4
10-
pytz==2022.1
11-
requests>=2.20.0
12-
urllib3>=1.24.3
13-
deprecated==1.2.10
14-
wheel==0.33.6
15-
iso8601==0.1.13
1+
asn1==2.2.0
2+
cryptography>=42.0.0
3+
cffi>=1.16.0
4+
future>=0.18.3
5+
itsdangerous>=2.1.2
6+
pbr>=5.11.1
7+
protobuf==3.20.3
8+
pyopenssl>=24.0.0
9+
PyYAML>=6.0
10+
pytz>=2024.1
11+
requests>=2.31.0
12+
urllib3>=2.2.1
13+
deprecated>=1.2.14
14+
wheel>=0.41.0
15+
iso8601>=1.1.0
16+
wrapt>=1.15.0

Diff for: requirements.txt

+24-25
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,59 @@
11
#
2-
# This file is autogenerated by pip-compile with python 3.9
3-
# To update, run:
2+
# This file is autogenerated by pip-compile with Python 3.12
3+
# by the following command:
44
#
5-
# pip-compile --output-file=requirements.txt requirements.in
5+
# pip-compile requirements.in
66
#
77
asn1==2.2.0
88
# via -r requirements.in
99
certifi==2018.11.29
1010
# via requests
11-
cffi==1.14.3
11+
cffi==1.17.1
1212
# via
1313
# -r requirements.in
1414
# cryptography
15-
chardet==3.0.4
15+
charset-normalizer==3.4.1
1616
# via requests
17-
cryptography==2.8
17+
cryptography==44.0.2
1818
# via
1919
# -r requirements.in
2020
# pyopenssl
21-
deprecated==1.2.10
21+
deprecated==1.2.18
2222
# via -r requirements.in
23-
future==0.18.2
23+
future==1.0.0
2424
# via -r requirements.in
2525
idna==2.7
2626
# via requests
27-
iso8601==0.1.13
27+
iso8601==2.1.0
2828
# via -r requirements.in
29-
itsdangerous==1.1.0
29+
itsdangerous==2.2.0
3030
# via -r requirements.in
31-
pbr==1.10.0
31+
pbr==6.1.1
3232
# via -r requirements.in
33-
protobuf==4.21.12
33+
protobuf==3.20.3
3434
# via -r requirements.in
3535
pycparser==2.18
3636
# via cffi
37-
pyopenssl==19.1.0
37+
pyopenssl==25.0.0
3838
# via -r requirements.in
39-
pytz==2022.1
39+
pytz==2025.2
4040
# via -r requirements.in
41-
pyyaml==5.2
41+
pyyaml==6.0.2
4242
# via -r requirements.in
43-
requests==2.21.0
43+
requests==2.32.0
4444
# via -r requirements.in
45-
six==1.10.0
46-
# via
47-
# cryptography
48-
# protobuf
49-
# pyopenssl
50-
urllib3==1.24.3
45+
typing-extensions==4.13.2
46+
# via pyopenssl
47+
urllib3==2.4.0
5148
# via
5249
# -r requirements.in
5350
# requests
54-
wheel==0.33.6
51+
wheel==0.45.1
5552
# via -r requirements.in
56-
wrapt==1.11.2
57-
# via deprecated
53+
wrapt==1.17.2
54+
# via
55+
# -r requirements.in
56+
# deprecated
5857

5958
# The following packages are considered to be unsafe in a requirements file:
6059
# setuptools

Diff for: setup.py

+14-10
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@
1818
author="Yoti",
1919
author_email="[email protected]",
2020
install_requires=[
21-
"deprecated==1.2.10",
22-
"cryptography>=2.2.1",
23-
"protobuf==3.20.1",
24-
"requests>=2.11.1",
25-
"future>=0.11.0",
26-
"asn1==2.2.0",
27-
"pyopenssl>=18.0.0",
28-
"iso8601==0.1.13",
29-
"pytz==2022.1",
21+
"asn1==2.2.0", # still pinned due to enum34 issue
22+
"cryptography>=42.0.0",
23+
"protobuf==3.20.3",
24+
"requests>=2.31.0",
25+
"pyopenssl>=24.0.0",
26+
"pytz>=2024.1",
27+
"iso8601>=1.1.0",
28+
"deprecated>=1.2.14",
3029
],
3130
extras_require={
3231
"examples": [
@@ -43,7 +42,7 @@
4342
"pylint==1.9.4",
4443
"pylint-exit>=1.1.0",
4544
"python-coveralls==2.9.3",
46-
"coverage==4.5.4",
45+
"coverage>=7.4.0",
4746
"mock==2.0.0",
4847
"virtualenv==20.1.0",
4948
],
@@ -61,6 +60,11 @@
6160
"Programming Language :: Python :: 3.5",
6261
"Programming Language :: Python :: 3.6",
6362
"Programming Language :: Python :: 3.7",
63+
"Programming Language :: Python :: 3.8",
64+
"Programming Language :: Python :: 3.9",
65+
"Programming Language :: Python :: 3.10",
66+
"Programming Language :: Python :: 3.11",
67+
"Programming Language :: Python :: 3.12",
6468
"Topic :: Software Development :: Libraries :: Python Modules",
6569
],
6670
keywords="yoti sdk 2FA multifactor authentication verification identity login register verify 2Factor",

0 commit comments

Comments
 (0)