Skip to content

Commit 5bd80e1

Browse files
committed
Refresh Python dependencies
1 parent 8387e89 commit 5bd80e1

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ setuptools>=44.1.1;python_version<"3.5"
77
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
88
setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"
99
setuptools>=62.6.0;python_version>="3.7"
10-
setuptools-scm>=5.0.2;python_version<"3.6"
11-
setuptools-scm>=6.4.2;python_version>="3.6"
1210
tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"
1311
tomli>=2.0.1;python_version>="3.7"
1412
wheel>=0.37.1
@@ -113,7 +111,8 @@ ipython==7.34.0;python_version>="3.7"
113111
matplotlib-inline==0.1.3;python_version>="3.7"
114112
colorama==0.4.5
115113
importlib-metadata==2.1.3;python_version<"3.6"
116-
importlib-metadata==4.2.0;python_version>="3.6" and python_version<"3.8"
114+
importlib-metadata==4.8.3;python_version>="3.6" and python_version<"3.7"
115+
importlib-metadata==4.11.4;python_version>="3.7" and python_version<"3.8"
117116
pycparser==2.21
118117
pymysql==0.10.1;python_version<"3.6"
119118
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"
127126
Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"
128127
Pillow==9.1.1;python_version>="3.7"
129128
typing-extensions==3.10.0.2;python_version<"3.6"
130-
typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.9"
129+
typing-extensions==4.1.1;python_version>="3.6" and python_version<"3.7"
130+
typing-extensions==4.2.0;python_version>="3.7" and python_version<"3.9"
131131
rich==12.4.4;python_version>="3.6" and python_version<"4.0"
132132
tornado==5.1.1;python_version<"3.5"
133133
tornado==6.1;python_version>="3.5"

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,6 @@
132132
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
133133
'setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"',
134134
'setuptools>=62.6.0;python_version>="3.7"',
135-
'setuptools-scm>=5.0.2;python_version<"3.6"',
136-
'setuptools-scm>=6.4.2;python_version>="3.6"',
137135
'tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"',
138136
'tomli>=2.0.1;python_version>="3.7"',
139137
"wheel>=0.37.1",
@@ -238,7 +236,8 @@
238236
'matplotlib-inline==0.1.3;python_version>="3.7"', # ipython needs this
239237
"colorama==0.4.5",
240238
'importlib-metadata==2.1.3;python_version<"3.6"',
241-
'importlib-metadata==4.2.0;python_version>="3.6" and python_version<"3.8"', # noqa: E501
239+
'importlib-metadata==4.8.3;python_version>="3.6" and python_version<"3.7"', # noqa: E501
240+
'importlib-metadata==4.11.4;python_version>="3.7" and python_version<"3.8"', # noqa: E501
242241
"pycparser==2.21",
243242
'pymysql==0.10.1;python_version<"3.6"',
244243
'pymysql==1.0.2;python_version>="3.6"',
@@ -252,7 +251,8 @@
252251
'Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"',
253252
'Pillow==9.1.1;python_version>="3.7"',
254253
'typing-extensions==3.10.0.2;python_version<"3.6"', # <3.9 for "rich"
255-
'typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.9"', # noqa: E501
254+
'typing-extensions==4.1.1;python_version>="3.6" and python_version<"3.7"', # noqa: E501
255+
'typing-extensions==4.2.0;python_version>="3.7" and python_version<"3.9"', # noqa: E501
256256
'rich==12.4.4;python_version>="3.6" and python_version<"4.0"',
257257
'tornado==5.1.1;python_version<"3.5"',
258258
'tornado==6.1;python_version>="3.5"',

0 commit comments

Comments
 (0)