Skip to content

Commit fc8e32e

Browse files
committed
Refresh Python dependencies
1 parent 90855f4 commit fc8e32e

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ platformdirs==2.4.1;python_version>="3.7"
101101
pathlib2==2.3.5;python_version<"3.5"
102102
importlib-metadata==2.0.0;python_version<"3.5"
103103
importlib-metadata==2.1.1;python_version>="3.5" and python_version<"3.6"
104-
virtualenv>=20.12.1
104+
virtualenv>=20.13.0
105105
pycparser==2.21
106106
pymysql==0.10.1;python_version<"3.6"
107107
pymysql==1.0.2;python_version>="3.6"
@@ -111,10 +111,11 @@ cffi==1.15.0
111111
toml==0.10.2
112112
Pillow==6.2.2;python_version<"3.5"
113113
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
114-
Pillow==8.4.0;python_version>="3.6"
114+
Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"
115+
Pillow==9.0.0;python_version>="3.7"
115116
typing-extensions==3.10.0.2;python_version<"3.6"
116117
typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"
117-
rich==10.16.1;python_version>="3.6" and python_version<"4.0"
118+
rich==10.16.2;python_version>="3.6" and python_version<"4.0"
118119
tornado==5.1.1;python_version<"3.5"
119120
tornado==6.1;python_version>="3.5"
120121
pdfminer.six==20191110;python_version<"3.5"

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
222222
'importlib-metadata==2.0.0;python_version<"3.5"',
223223
'importlib-metadata==2.1.1;python_version>="3.5" and python_version<"3.6"', # noqa: E501
224-
"virtualenv>=20.12.1", # Sync with importlib-metadata and pathlib2
224+
"virtualenv>=20.13.0", # Sync with importlib-metadata and pathlib2
225225
"pycparser==2.21",
226226
'pymysql==0.10.1;python_version<"3.6"',
227227
'pymysql==1.0.2;python_version>="3.6"',
@@ -231,10 +231,11 @@
231231
"toml==0.10.2",
232232
'Pillow==6.2.2;python_version<"3.5"',
233233
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
234-
'Pillow==8.4.0;python_version>="3.6"',
234+
'Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"',
235+
'Pillow==9.0.0;python_version>="3.7"',
235236
'typing-extensions==3.10.0.2;python_version<"3.6"', # <3.8 for "rich"
236237
'typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"', # noqa: E501
237-
'rich==10.16.1;python_version>="3.6" and python_version<"4.0"',
238+
'rich==10.16.2;python_version>="3.6" and python_version<"4.0"',
238239
'tornado==5.1.1;python_version<"3.5"',
239240
'tornado==6.1;python_version>="3.5"',
240241
'pdfminer.six==20191110;python_version<"3.5"',

0 commit comments

Comments
 (0)