Refresh Python dependencies

This commit is contained in:
Michael Mintz 2021-12-28 23:40:38 -05:00
parent cb93fd33e8
commit 3b8f9fb2de
2 changed files with 10 additions and 10 deletions

View File

@ -5,13 +5,13 @@ packaging>=21.3;python_version>="3.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>=60.1.0;python_version>="3.7"
setuptools>=60.1.1;python_version>="3.7"
setuptools-scm>=5.0.2;python_version<"3.6"
setuptools-scm>=6.3.2;python_version>="3.6"
tomli>=1.2.2;python_version>="3.6" and python_version<"3.7"
tomli>=2.0.0;python_version>="3.7"
wheel>=0.37.1
attrs>=21.2.0
attrs>=21.3.0
PyYAML>=6.0;python_version>="3.6"
traitlets>=4.3.3;python_version<"3.7"
traitlets>=5.1.1;python_version>="3.7"
@ -46,7 +46,7 @@ more-itertools==8.12.0;python_version>="3.5"
cssselect==1.1.0
sortedcontainers==2.4.0
filelock==3.2.1;python_version<"3.6"
filelock==3.4.0;python_version>="3.6"
filelock==3.4.2;python_version>="3.6"
fasteners==0.16;python_version<"3.5"
fasteners==0.16.3;python_version>="3.5"
execnet==1.9.0
@ -95,11 +95,11 @@ ipython==7.30.1;python_version>="3.7"
matplotlib-inline==0.1.3;python_version>="3.7"
colorama==0.4.4
platformdirs==2.0.2;python_version<"3.6"
platformdirs==2.4.0;python_version>="3.6"
platformdirs==2.4.1;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"
virtualenv>=20.10.0
virtualenv>=20.11.1
pycparser==2.21
pymysql==0.10.1;python_version<"3.6"
pymysql==1.0.2;python_version>="3.6"

View File

@ -125,13 +125,13 @@ setup(
'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>=60.1.0;python_version>="3.7"',
'setuptools>=60.1.1;python_version>="3.7"',
'setuptools-scm>=5.0.2;python_version<"3.6"',
'setuptools-scm>=6.3.2;python_version>="3.6"',
'tomli>=1.2.2;python_version>="3.6" and python_version<"3.7"',
'tomli>=2.0.0;python_version>="3.7"',
"wheel>=0.37.1",
"attrs>=21.2.0",
"attrs>=21.3.0",
'PyYAML>=6.0;python_version>="3.6"',
'traitlets>=4.3.3;python_version<"3.7"',
'traitlets>=5.1.1;python_version>="3.7"',
@ -166,7 +166,7 @@ setup(
"cssselect==1.1.0",
"sortedcontainers==2.4.0",
'filelock==3.2.1;python_version<"3.6"',
'filelock==3.4.0;python_version>="3.6"',
'filelock==3.4.2;python_version>="3.6"',
'fasteners==0.16;python_version<"3.5"',
'fasteners==0.16.3;python_version>="3.5"',
"execnet==1.9.0",
@ -215,11 +215,11 @@ setup(
'matplotlib-inline==0.1.3;python_version>="3.7"', # ipython needs this
"colorama==0.4.4",
'platformdirs==2.0.2;python_version<"3.6"',
'platformdirs==2.4.0;python_version>="3.6"',
'platformdirs==2.4.1;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
"virtualenv>=20.10.0", # Sync with importlib-metadata and pathlib2
"virtualenv>=20.11.1", # Sync with importlib-metadata and pathlib2
"pycparser==2.21",
'pymysql==0.10.1;python_version<"3.6"',
'pymysql==1.0.2;python_version>="3.6"',