Skip to content

Commit 31f4159

Browse files
committed
Update Python dependencies
1 parent 965fde4 commit 31f4159

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed

requirements.txt

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pip>=20.3.4;python_version<"3.6"
22
pip>=21.2.4;python_version>="3.6"
33
packaging>=20.9;python_version<"3.6"
44
packaging>=21.0;python_version>="3.6"
5-
typing-extensions>=3.10.0.0
5+
typing-extensions>=3.10.0.2
66
setuptools>=44.1.1;python_version<"3.5"
77
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
88
setuptools>=57.4.0;python_version>="3.6"
@@ -39,12 +39,13 @@ filelock==3.0.12
3939
fasteners==0.16;python_version<"3.5"
4040
fasteners==0.16.3;python_version>="3.5"
4141
execnet==1.9.0
42-
pluggy==0.13.1
42+
pluggy==0.13.1;python_version<"3.6"
43+
pluggy==1.0.0;python_version>="3.6"
4344
py==1.8.1;python_version<"3.5"
4445
py==1.10.0;python_version>="3.5"
4546
pytest==4.6.11;python_version<"3.5"
4647
pytest==6.1.2;python_version>="3.5" and python_version<"3.6"
47-
pytest==6.2.4;python_version>="3.6"
48+
pytest==6.2.5;python_version>="3.6"
4849
pytest-forked==1.3.0
4950
pytest-html==1.22.1;python_version<"3.6"
5051
pytest-html==2.0.1;python_version>="3.6"
@@ -71,7 +72,7 @@ pyopenssl==20.0.1;python_version>="3.5"
7172
pygments==2.5.2;python_version<"3.5"
7273
pygments==2.10.0;python_version>="3.5"
7374
traitlets==4.3.3;python_version<"3.7"
74-
traitlets==5.0.5;python_version>="3.7"
75+
traitlets==5.1.0;python_version>="3.7"
7576
prompt-toolkit==1.0.18;python_version<"3.5"
7677
prompt-toolkit==2.0.10;python_version>="3.5" and python_version<"3.6.2"
7778
prompt-toolkit==3.0.20;python_version>="3.6.2"
@@ -80,11 +81,11 @@ decorator==5.0.9;python_version>="3.5"
8081
ipython==5.10.0;python_version<"3.5"
8182
ipython==7.9.0;python_version>="3.5" and python_version<"3.6"
8283
ipython==7.16.1;python_version>="3.6" and python_version<"3.7"
83-
ipython==7.26.0;python_version>="3.7"
84+
ipython==7.27.0;python_version>="3.7"
8485
matplotlib-inline==0.1.2;python_version>="3.7"
8586
colorama==0.4.4
8687
platformdirs==2.0.2;python_version<"3.6"
87-
platformdirs==2.2.0;python_version>="3.6"
88+
platformdirs==2.3.0;python_version>="3.6"
8889
pathlib2==2.3.5;python_version<"3.5"
8990
importlib-metadata==2.0.0;python_version<"3.5"
9091
importlib-metadata==2.1.1;python_version>="3.5" and python_version<"3.6"
@@ -98,7 +99,7 @@ toml==0.10.2
9899
Pillow==6.2.2;python_version<"3.5"
99100
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
100101
Pillow==8.3.1;python_version>="3.6"
101-
rich==10.7.0;python_version>="3.6" and python_version<"4.0"
102+
rich==10.9.0;python_version>="3.6" and python_version<"4.0"
102103
tornado==5.1.1;python_version<"3.5"
103104
tornado==6.1;python_version>="3.5"
104105
pdfminer.six==20191110;python_version<"3.5"

setup.py

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
"Programming Language :: Python :: 3.7",
102102
"Programming Language :: Python :: 3.8",
103103
"Programming Language :: Python :: 3.9",
104+
"Programming Language :: Python :: 3.10",
104105
"Topic :: Internet",
105106
"Topic :: Scientific/Engineering",
106107
"Topic :: Software Development",
@@ -117,7 +118,7 @@
117118
'pip>=21.2.4;python_version>="3.6"',
118119
'packaging>=20.9;python_version<"3.6"',
119120
'packaging>=21.0;python_version>="3.6"',
120-
"typing-extensions>=3.10.0.0",
121+
"typing-extensions>=3.10.0.2",
121122
'setuptools>=44.1.1;python_version<"3.5"',
122123
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
123124
'setuptools>=57.4.0;python_version>="3.6"',
@@ -154,12 +155,13 @@
154155
'fasteners==0.16;python_version<"3.5"',
155156
'fasteners==0.16.3;python_version>="3.5"',
156157
"execnet==1.9.0",
157-
"pluggy==0.13.1",
158+
'pluggy==0.13.1;python_version<"3.6"',
159+
'pluggy==1.0.0;python_version>="3.6"',
158160
'py==1.8.1;python_version<"3.5"',
159161
'py==1.10.0;python_version>="3.5"',
160162
'pytest==4.6.11;python_version<"3.5"',
161163
'pytest==6.1.2;python_version>="3.5" and python_version<"3.6"',
162-
'pytest==6.2.4;python_version>="3.6"',
164+
'pytest==6.2.5;python_version>="3.6"',
163165
"pytest-forked==1.3.0",
164166
'pytest-html==1.22.1;python_version<"3.6"',
165167
'pytest-html==2.0.1;python_version>="3.6"',
@@ -186,7 +188,7 @@
186188
'pygments==2.5.2;python_version<"3.5"',
187189
'pygments==2.10.0;python_version>="3.5"',
188190
'traitlets==4.3.3;python_version<"3.7"',
189-
'traitlets==5.0.5;python_version>="3.7"',
191+
'traitlets==5.1.0;python_version>="3.7"',
190192
'prompt-toolkit==1.0.18;python_version<"3.5"',
191193
'prompt-toolkit==2.0.10;python_version>="3.5" and python_version<"3.6.2"', # noqa: E501
192194
'prompt-toolkit==3.0.20;python_version>="3.6.2"',
@@ -195,11 +197,11 @@
195197
'ipython==5.10.0;python_version<"3.5"',
196198
'ipython==7.9.0;python_version>="3.5" and python_version<"3.6"',
197199
'ipython==7.16.1;python_version>="3.6" and python_version<"3.7"',
198-
'ipython==7.26.0;python_version>="3.7"',
199-
'matplotlib-inline==0.1.2;python_version>="3.7"',
200+
'ipython==7.27.0;python_version>="3.7"', # Requires matplotlib-inline
201+
'matplotlib-inline==0.1.2;python_version>="3.7"', # ipython needs this
200202
"colorama==0.4.4",
201203
'platformdirs==2.0.2;python_version<"3.6"',
202-
'platformdirs==2.2.0;python_version>="3.6"',
204+
'platformdirs==2.3.0;python_version>="3.6"',
203205
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
204206
'importlib-metadata==2.0.0;python_version<"3.5"',
205207
'importlib-metadata==2.1.1;python_version>="3.5" and python_version<"3.6"', # noqa: E501
@@ -213,7 +215,7 @@
213215
'Pillow==6.2.2;python_version<"3.5"',
214216
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
215217
'Pillow==8.3.1;python_version>="3.6"',
216-
'rich==10.7.0;python_version>="3.6" and python_version<"4.0"',
218+
'rich==10.9.0;python_version>="3.6" and python_version<"4.0"',
217219
'tornado==5.1.1;python_version<"3.5"',
218220
'tornado==6.1;python_version>="3.5"',
219221
'pdfminer.six==20191110;python_version<"3.5"',

0 commit comments

Comments
 (0)