File tree 3 files changed +54
-50
lines changed
3 files changed +54
-50
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1
1
#
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 :
4
4
#
5
- # pip-compile --output-file=requirements.txt requirements.in
5
+ # pip-compile requirements.in
6
6
#
7
7
asn1 == 2.2.0
8
8
# via -r requirements.in
9
9
certifi == 2018.11.29
10
10
# via requests
11
- cffi == 1.14.3
11
+ cffi == 1.17.1
12
12
# via
13
13
# -r requirements.in
14
14
# cryptography
15
- chardet == 3.0.4
15
+ charset-normalizer == 3.4.1
16
16
# via requests
17
- cryptography == 2.8
17
+ cryptography == 44.0.2
18
18
# via
19
19
# -r requirements.in
20
20
# pyopenssl
21
- deprecated == 1.2.10
21
+ deprecated == 1.2.18
22
22
# via -r requirements.in
23
- future == 0.18.2
23
+ future == 1.0.0
24
24
# via -r requirements.in
25
25
idna == 2.7
26
26
# via requests
27
- iso8601 == 0 .1.13
27
+ iso8601 == 2 .1.0
28
28
# via -r requirements.in
29
- itsdangerous == 1.1 .0
29
+ itsdangerous == 2.2 .0
30
30
# via -r requirements.in
31
- pbr == 1.10.0
31
+ pbr == 6.1.1
32
32
# via -r requirements.in
33
- protobuf == 4.21.12
33
+ protobuf == 3.20.3
34
34
# via -r requirements.in
35
35
pycparser == 2.18
36
36
# via cffi
37
- pyopenssl == 19.1 .0
37
+ pyopenssl == 25.0 .0
38
38
# via -r requirements.in
39
- pytz == 2022.1
39
+ pytz == 2025.2
40
40
# via -r requirements.in
41
- pyyaml == 5 .2
41
+ pyyaml == 6.0 .2
42
42
# via -r requirements.in
43
- requests == 2.21 .0
43
+ requests == 2.32 .0
44
44
# 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
51
48
# via
52
49
# -r requirements.in
53
50
# requests
54
- wheel == 0.33.6
51
+ wheel == 0.45.1
55
52
# 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
58
57
59
58
# The following packages are considered to be unsafe in a requirements file:
60
59
# setuptools
Original file line number Diff line number Diff line change 18
18
author = "Yoti" ,
19
19
20
20
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" ,
30
29
],
31
30
extras_require = {
32
31
"examples" : [
43
42
"pylint==1.9.4" ,
44
43
"pylint-exit>=1.1.0" ,
45
44
"python-coveralls==2.9.3" ,
46
- "coverage==4.5.4 " ,
45
+ "coverage>=7.4.0 " ,
47
46
"mock==2.0.0" ,
48
47
"virtualenv==20.1.0" ,
49
48
],
61
60
"Programming Language :: Python :: 3.5" ,
62
61
"Programming Language :: Python :: 3.6" ,
63
62
"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" ,
64
68
"Topic :: Software Development :: Libraries :: Python Modules" ,
65
69
],
66
70
keywords = "yoti sdk 2FA multifactor authentication verification identity login register verify 2Factor" ,
You can’t perform that action at this time.
0 commit comments