Fix multi-factor auth code on early versions of Python

This commit is contained in:
Michael Mintz 2022-01-04 20:46:31 -05:00
parent 91415a226c
commit 61f61e6731
2 changed files with 4 additions and 2 deletions

View File

@ -105,7 +105,8 @@ virtualenv>=20.13.0
pycparser==2.21
pymysql==0.10.1;python_version<"3.6"
pymysql==1.0.2;python_version>="3.6"
pyotp==2.6.0
pyotp==2.3.0;python_version<"3.5"
pyotp==2.6.0;python_version>="3.5"
boto==2.49.0
cffi==1.15.0
toml==0.10.2

View File

@ -225,7 +225,8 @@ setup(
"pycparser==2.21",
'pymysql==0.10.1;python_version<"3.6"',
'pymysql==1.0.2;python_version>="3.6"',
"pyotp==2.6.0",
'pyotp==2.3.0;python_version<"3.5"',
'pyotp==2.6.0;python_version>="3.5"',
"boto==2.49.0",
"cffi==1.15.0",
"toml==0.10.2",