Refresh Python dependencies

This commit is contained in:
Michael Mintz 2022-06-22 10:39:06 -04:00
parent 8387e89cfa
commit 5bd80e19a1
2 changed files with 8 additions and 8 deletions

View File

@ -7,8 +7,6 @@ setuptools>=44.1.1;python_version<"3.5"
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"
setuptools>=62.6.0;python_version>="3.7"
setuptools-scm>=5.0.2;python_version<"3.6"
setuptools-scm>=6.4.2;python_version>="3.6"
tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"
tomli>=2.0.1;python_version>="3.7"
wheel>=0.37.1
@ -113,7 +111,8 @@ ipython==7.34.0;python_version>="3.7"
matplotlib-inline==0.1.3;python_version>="3.7"
colorama==0.4.5
importlib-metadata==2.1.3;python_version<"3.6"
importlib-metadata==4.2.0;python_version>="3.6" and python_version<"3.8"
importlib-metadata==4.8.3;python_version>="3.6" and python_version<"3.7"
importlib-metadata==4.11.4;python_version>="3.7" and python_version<"3.8"
pycparser==2.21
pymysql==0.10.1;python_version<"3.6"
pymysql==1.0.2;python_version>="3.6"
@ -127,7 +126,8 @@ Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"
Pillow==9.1.1;python_version>="3.7"
typing-extensions==3.10.0.2;python_version<"3.6"
typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.9"
typing-extensions==4.1.1;python_version>="3.6" and python_version<"3.7"
typing-extensions==4.2.0;python_version>="3.7" and python_version<"3.9"
rich==12.4.4;python_version>="3.6" and python_version<"4.0"
tornado==5.1.1;python_version<"3.5"
tornado==6.1;python_version>="3.5"

View File

@ -132,8 +132,6 @@ setup(
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
'setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"',
'setuptools>=62.6.0;python_version>="3.7"',
'setuptools-scm>=5.0.2;python_version<"3.6"',
'setuptools-scm>=6.4.2;python_version>="3.6"',
'tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"',
'tomli>=2.0.1;python_version>="3.7"',
"wheel>=0.37.1",
@ -238,7 +236,8 @@ setup(
'matplotlib-inline==0.1.3;python_version>="3.7"', # ipython needs this
"colorama==0.4.5",
'importlib-metadata==2.1.3;python_version<"3.6"',
'importlib-metadata==4.2.0;python_version>="3.6" and python_version<"3.8"', # noqa: E501
'importlib-metadata==4.8.3;python_version>="3.6" and python_version<"3.7"', # noqa: E501
'importlib-metadata==4.11.4;python_version>="3.7" and python_version<"3.8"', # noqa: E501
"pycparser==2.21",
'pymysql==0.10.1;python_version<"3.6"',
'pymysql==1.0.2;python_version>="3.6"',
@ -252,7 +251,8 @@ setup(
'Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"',
'Pillow==9.1.1;python_version>="3.7"',
'typing-extensions==3.10.0.2;python_version<"3.6"', # <3.9 for "rich"
'typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.9"', # noqa: E501
'typing-extensions==4.1.1;python_version>="3.6" and python_version<"3.7"', # noqa: E501
'typing-extensions==4.2.0;python_version>="3.7" and python_version<"3.9"', # noqa: E501
'rich==12.4.4;python_version>="3.6" and python_version<"4.0"',
'tornado==5.1.1;python_version<"3.5"',
'tornado==6.1;python_version>="3.5"',