Skip to content

Commit 4cfea1c

Browse files
committed
Update Python dependencies
1 parent 56a8d41 commit 4cfea1c

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
@@ -10,6 +10,7 @@ setuptools-scm>=6.0.1;python_version>="3.6"
1010
wheel>=0.36.2
1111
attrs>=21.2.0
1212
PyYAML>=5.4.1;python_version>="3.6"
13+
sortedcontainers==2.4.0
1314
certifi>=2020.12.5
1415
six==1.16.0
1516
nose==1.3.7
@@ -64,7 +65,7 @@ traitlets==5.0.5;python_version>="3.7"
6465
prompt-toolkit==1.0.18;python_version<"3.6"
6566
prompt-toolkit==3.0.18;python_version>="3.6"
6667
decorator==4.4.2;python_version<"3.5"
67-
decorator==5.0.7;python_version>="3.5"
68+
decorator==5.0.9;python_version>="3.5"
6869
ipython==5.10.0;python_version<"3.5"
6970
ipython==6.5.0;python_version>="3.5" and python_version<"3.6"
7071
ipython==7.16.1;python_version>="3.6" and python_version<"3.7"
@@ -83,7 +84,7 @@ toml==0.10.2
8384
Pillow==6.2.2;python_version<"3.5"
8485
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
8586
Pillow==8.2.0;python_version>="3.6"
86-
rich==10.2.0;python_version>="3.6" and python_version<"4.0"
87+
rich==10.2.1;python_version>="3.6" and python_version<"4.0"
8788
tornado==5.1.1;python_version<"3.5"
8889
tornado==6.1;python_version>="3.5"
8990
pdfminer.six==20191110;python_version<"3.5"
@@ -93,7 +94,7 @@ pdfminer.six==20201018;python_version>="3.5"
9394
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
9495

9596
coverage==5.5
96-
pytest-cov==2.11.1
97+
pytest-cov==2.12.0
9798
flake8==3.7.9;python_version<"3.5"
9899
flake8==3.9.2;python_version>="3.5"
99100
pyflakes==2.1.1;python_version<"3.5"

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@
125125
"wheel>=0.36.2",
126126
"attrs>=21.2.0",
127127
'PyYAML>=5.4.1;python_version>="3.6"',
128+
"sortedcontainers==2.4.0",
128129
"certifi>=2020.12.5",
129130
"six==1.16.0",
130131
"nose==1.3.7",
@@ -179,7 +180,7 @@
179180
'prompt-toolkit==1.0.18;python_version<"3.6"',
180181
'prompt-toolkit==3.0.18;python_version>="3.6"',
181182
'decorator==4.4.2;python_version<"3.5"',
182-
'decorator==5.0.7;python_version>="3.5"',
183+
'decorator==5.0.9;python_version>="3.5"',
183184
'ipython==5.10.0;python_version<"3.5"',
184185
'ipython==6.5.0;python_version>="3.5" and python_version<"3.6"',
185186
'ipython==7.16.1;python_version>="3.6" and python_version<"3.7"',
@@ -198,7 +199,7 @@
198199
'Pillow==6.2.2;python_version<"3.5"',
199200
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
200201
'Pillow==8.2.0;python_version>="3.6"',
201-
'rich==10.2.0;python_version>="3.6" and python_version<"4.0"',
202+
'rich==10.2.1;python_version>="3.6" and python_version<"4.0"',
202203
'tornado==5.1.1;python_version<"3.5"',
203204
'tornado==6.1;python_version>="3.5"',
204205
'pdfminer.six==20191110;python_version<"3.5"',
@@ -208,7 +209,7 @@
208209
# pip install -e .[coverage]
209210
"coverage": [
210211
"coverage==5.5",
211-
"pytest-cov==2.11.1",
212+
"pytest-cov==2.12.0",
212213
],
213214
# pip install -e .[flake]
214215
"flake": [

0 commit comments

Comments
 (0)