Refresh Python dependencies
This commit is contained in:
parent
c6ded969d8
commit
c25817d1fd
|
@ -69,7 +69,8 @@ beautifulsoup4==4.9.3;python_version<"3.5"
|
||||||
beautifulsoup4==4.10.0;python_version>="3.5"
|
beautifulsoup4==4.10.0;python_version>="3.5"
|
||||||
cryptography==2.9.2;python_version<"3.5"
|
cryptography==2.9.2;python_version<"3.5"
|
||||||
cryptography==3.2.1;python_version>="3.5" and python_version<"3.6"
|
cryptography==3.2.1;python_version>="3.5" and python_version<"3.6"
|
||||||
cryptography==3.4.8;python_version>="3.6"
|
cryptography==3.4.8;python_version>="3.6" and python_version<"3.7"
|
||||||
|
cryptography==35.0.0;python_version>="3.7"
|
||||||
pygments==2.5.2;python_version<"3.5"
|
pygments==2.5.2;python_version<"3.5"
|
||||||
pygments==2.10.0;python_version>="3.5"
|
pygments==2.10.0;python_version>="3.5"
|
||||||
traitlets==4.3.3;python_version<"3.7"
|
traitlets==4.3.3;python_version<"3.7"
|
||||||
|
@ -111,7 +112,8 @@ pdfminer.six==20201018;python_version>="3.5"
|
||||||
|
|
||||||
coverage==5.5;python_version<"3.6"
|
coverage==5.5;python_version<"3.6"
|
||||||
coverage==6.0;python_version>="3.6"
|
coverage==6.0;python_version>="3.6"
|
||||||
pytest-cov==2.12.1
|
pytest-cov==2.12.1;python_version<"3.6"
|
||||||
|
pytest-cov==3.0.0;python_version>="3.6"
|
||||||
flake8==3.7.9;python_version<"3.5"
|
flake8==3.7.9;python_version<"3.5"
|
||||||
flake8==3.9.2;python_version>="3.5"
|
flake8==3.9.2;python_version>="3.5"
|
||||||
pyflakes==2.1.1;python_version<"3.5"
|
pyflakes==2.1.1;python_version<"3.5"
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -185,7 +185,8 @@ setup(
|
||||||
'beautifulsoup4==4.10.0;python_version>="3.5"',
|
'beautifulsoup4==4.10.0;python_version>="3.5"',
|
||||||
'cryptography==2.9.2;python_version<"3.5"',
|
'cryptography==2.9.2;python_version<"3.5"',
|
||||||
'cryptography==3.2.1;python_version>="3.5" and python_version<"3.6"',
|
'cryptography==3.2.1;python_version>="3.5" and python_version<"3.6"',
|
||||||
'cryptography==3.4.8;python_version>="3.6"',
|
'cryptography==3.4.8;python_version>="3.6" and python_version<"3.7"',
|
||||||
|
'cryptography==35.0.0;python_version>="3.7"',
|
||||||
'pygments==2.5.2;python_version<"3.5"',
|
'pygments==2.5.2;python_version<"3.5"',
|
||||||
'pygments==2.10.0;python_version>="3.5"',
|
'pygments==2.10.0;python_version>="3.5"',
|
||||||
'traitlets==4.3.3;python_version<"3.7"',
|
'traitlets==4.3.3;python_version<"3.7"',
|
||||||
|
@ -227,7 +228,8 @@ setup(
|
||||||
"coverage": [
|
"coverage": [
|
||||||
'coverage==5.5;python_version<"3.6"',
|
'coverage==5.5;python_version<"3.6"',
|
||||||
'coverage==6.0;python_version>="3.6"',
|
'coverage==6.0;python_version>="3.6"',
|
||||||
"pytest-cov==2.12.1",
|
'pytest-cov==2.12.1;python_version<"3.6"',
|
||||||
|
'pytest-cov==3.0.0;python_version>="3.6"',
|
||||||
],
|
],
|
||||||
# pip install -e .[flake]
|
# pip install -e .[flake]
|
||||||
"flake": [
|
"flake": [
|
||||||
|
|
Loading…
Reference in New Issue