Update Python dependencies

This commit is contained in:
Michael Mintz 2021-09-01 00:39:18 -04:00
parent 965fde45a7
commit 31f4159b3f
2 changed files with 18 additions and 15 deletions

View File

@ -2,7 +2,7 @@ pip>=20.3.4;python_version<"3.6"
pip>=21.2.4;python_version>="3.6"
packaging>=20.9;python_version<"3.6"
packaging>=21.0;python_version>="3.6"
typing-extensions>=3.10.0.0
typing-extensions>=3.10.0.2
setuptools>=44.1.1;python_version<"3.5"
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
setuptools>=57.4.0;python_version>="3.6"
@ -39,12 +39,13 @@ filelock==3.0.12
fasteners==0.16;python_version<"3.5"
fasteners==0.16.3;python_version>="3.5"
execnet==1.9.0
pluggy==0.13.1
pluggy==0.13.1;python_version<"3.6"
pluggy==1.0.0;python_version>="3.6"
py==1.8.1;python_version<"3.5"
py==1.10.0;python_version>="3.5"
pytest==4.6.11;python_version<"3.5"
pytest==6.1.2;python_version>="3.5" and python_version<"3.6"
pytest==6.2.4;python_version>="3.6"
pytest==6.2.5;python_version>="3.6"
pytest-forked==1.3.0
pytest-html==1.22.1;python_version<"3.6"
pytest-html==2.0.1;python_version>="3.6"
@ -71,7 +72,7 @@ pyopenssl==20.0.1;python_version>="3.5"
pygments==2.5.2;python_version<"3.5"
pygments==2.10.0;python_version>="3.5"
traitlets==4.3.3;python_version<"3.7"
traitlets==5.0.5;python_version>="3.7"
traitlets==5.1.0;python_version>="3.7"
prompt-toolkit==1.0.18;python_version<"3.5"
prompt-toolkit==2.0.10;python_version>="3.5" and python_version<"3.6.2"
prompt-toolkit==3.0.20;python_version>="3.6.2"
@ -80,11 +81,11 @@ decorator==5.0.9;python_version>="3.5"
ipython==5.10.0;python_version<"3.5"
ipython==7.9.0;python_version>="3.5" and python_version<"3.6"
ipython==7.16.1;python_version>="3.6" and python_version<"3.7"
ipython==7.26.0;python_version>="3.7"
ipython==7.27.0;python_version>="3.7"
matplotlib-inline==0.1.2;python_version>="3.7"
colorama==0.4.4
platformdirs==2.0.2;python_version<"3.6"
platformdirs==2.2.0;python_version>="3.6"
platformdirs==2.3.0;python_version>="3.6"
pathlib2==2.3.5;python_version<"3.5"
importlib-metadata==2.0.0;python_version<"3.5"
importlib-metadata==2.1.1;python_version>="3.5" and python_version<"3.6"
@ -98,7 +99,7 @@ toml==0.10.2
Pillow==6.2.2;python_version<"3.5"
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
Pillow==8.3.1;python_version>="3.6"
rich==10.7.0;python_version>="3.6" and python_version<"4.0"
rich==10.9.0;python_version>="3.6" and python_version<"4.0"
tornado==5.1.1;python_version<"3.5"
tornado==6.1;python_version>="3.5"
pdfminer.six==20191110;python_version<"3.5"

View File

@ -101,6 +101,7 @@ setup(
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
@ -117,7 +118,7 @@ setup(
'pip>=21.2.4;python_version>="3.6"',
'packaging>=20.9;python_version<"3.6"',
'packaging>=21.0;python_version>="3.6"',
"typing-extensions>=3.10.0.0",
"typing-extensions>=3.10.0.2",
'setuptools>=44.1.1;python_version<"3.5"',
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
'setuptools>=57.4.0;python_version>="3.6"',
@ -154,12 +155,13 @@ setup(
'fasteners==0.16;python_version<"3.5"',
'fasteners==0.16.3;python_version>="3.5"',
"execnet==1.9.0",
"pluggy==0.13.1",
'pluggy==0.13.1;python_version<"3.6"',
'pluggy==1.0.0;python_version>="3.6"',
'py==1.8.1;python_version<"3.5"',
'py==1.10.0;python_version>="3.5"',
'pytest==4.6.11;python_version<"3.5"',
'pytest==6.1.2;python_version>="3.5" and python_version<"3.6"',
'pytest==6.2.4;python_version>="3.6"',
'pytest==6.2.5;python_version>="3.6"',
"pytest-forked==1.3.0",
'pytest-html==1.22.1;python_version<"3.6"',
'pytest-html==2.0.1;python_version>="3.6"',
@ -186,7 +188,7 @@ setup(
'pygments==2.5.2;python_version<"3.5"',
'pygments==2.10.0;python_version>="3.5"',
'traitlets==4.3.3;python_version<"3.7"',
'traitlets==5.0.5;python_version>="3.7"',
'traitlets==5.1.0;python_version>="3.7"',
'prompt-toolkit==1.0.18;python_version<"3.5"',
'prompt-toolkit==2.0.10;python_version>="3.5" and python_version<"3.6.2"', # noqa: E501
'prompt-toolkit==3.0.20;python_version>="3.6.2"',
@ -195,11 +197,11 @@ setup(
'ipython==5.10.0;python_version<"3.5"',
'ipython==7.9.0;python_version>="3.5" and python_version<"3.6"',
'ipython==7.16.1;python_version>="3.6" and python_version<"3.7"',
'ipython==7.26.0;python_version>="3.7"',
'matplotlib-inline==0.1.2;python_version>="3.7"',
'ipython==7.27.0;python_version>="3.7"', # Requires matplotlib-inline
'matplotlib-inline==0.1.2;python_version>="3.7"', # ipython needs this
"colorama==0.4.4",
'platformdirs==2.0.2;python_version<"3.6"',
'platformdirs==2.2.0;python_version>="3.6"',
'platformdirs==2.3.0;python_version>="3.6"',
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
'importlib-metadata==2.0.0;python_version<"3.5"',
'importlib-metadata==2.1.1;python_version>="3.5" and python_version<"3.6"', # noqa: E501
@ -213,7 +215,7 @@ setup(
'Pillow==6.2.2;python_version<"3.5"',
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
'Pillow==8.3.1;python_version>="3.6"',
'rich==10.7.0;python_version>="3.6" and python_version<"4.0"',
'rich==10.9.0;python_version>="3.6" and python_version<"4.0"',
'tornado==5.1.1;python_version<"3.5"',
'tornado==6.1;python_version>="3.5"',
'pdfminer.six==20191110;python_version<"3.5"',