Skip to content

Commit 99f89d2

Browse files
committed
Refresh Python dependencies
1 parent 8e55f18 commit 99f89d2

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

requirements.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ setuptools-scm>=6.3.2;python_version>="3.6"
1111
tomli>=1.2.1;python_version>="3.6"
1212
wheel>=0.37.0
1313
attrs>=21.2.0
14-
PyYAML>=5.4.1;python_version>="3.6"
14+
PyYAML>=6.0;python_version>="3.6"
1515
sortedcontainers==2.4.0
1616
certifi>=2021.10.8
1717
six==1.16.0
@@ -23,10 +23,10 @@ parso==0.8.2;python_version>="3.6"
2323
jedi==0.17.2;python_version<"3.6"
2424
jedi==0.18.0;python_version>="3.6"
2525
idna==2.10;python_version<"3.6"
26-
idna==3.2;python_version>="3.6"
26+
idna==3.3;python_version>="3.6"
2727
chardet==3.0.4;python_version<"3.5"
2828
chardet==4.0.0;python_version>="3.5"
29-
charset-normalizer==2.0.6;python_version>="3.5"
29+
charset-normalizer==2.0.7;python_version>="3.5"
3030
urllib3==1.26.7
3131
requests==2.26.0;python_version<"3.5"
3232
requests==2.25.1;python_version>="3.5" and python_version<"3.6"
@@ -96,7 +96,7 @@ pymysql==0.10.1;python_version<"3.6"
9696
pymysql==1.0.2;python_version>="3.6"
9797
pyotp==2.6.0
9898
boto==2.49.0
99-
cffi==1.14.6
99+
cffi==1.15.0
100100
toml==0.10.2
101101
Pillow==6.2.2;python_version<"3.5"
102102
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
@@ -105,13 +105,14 @@ rich==10.12.0;python_version>="3.6" and python_version<"4.0"
105105
tornado==5.1.1;python_version<"3.5"
106106
tornado==6.1;python_version>="3.5"
107107
pdfminer.six==20191110;python_version<"3.5"
108-
pdfminer.six==20201018;python_version>="3.5"
108+
pdfminer.six==20201018;python_version>="3.5" and python_version<"3.6"
109+
pdfminer.six==20211012;python_version>="3.6"
109110

110111
# --- Testing Requirements --- #
111112
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
112113

113114
coverage==5.5;python_version<"3.6"
114-
coverage==6.0.1;python_version>="3.6"
115+
coverage==6.0.2;python_version>="3.6"
115116
pytest-cov==2.12.1;python_version<"3.6"
116117
pytest-cov==3.0.0;python_version>="3.6"
117118
flake8==3.7.9;python_version<"3.5"

setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
'tomli>=1.2.1;python_version>="3.6"',
128128
"wheel>=0.37.0",
129129
"attrs>=21.2.0",
130-
'PyYAML>=5.4.1;python_version>="3.6"',
130+
'PyYAML>=6.0;python_version>="3.6"',
131131
"sortedcontainers==2.4.0",
132132
"certifi>=2021.10.8",
133133
"six==1.16.0",
@@ -139,10 +139,10 @@
139139
'jedi==0.17.2;python_version<"3.6"',
140140
'jedi==0.18.0;python_version>="3.6"',
141141
'idna==2.10;python_version<"3.6"', # Must stay in sync with "requests"
142-
'idna==3.2;python_version>="3.6"', # Must stay in sync with "requests"
142+
'idna==3.3;python_version>="3.6"', # Must stay in sync with "requests"
143143
'chardet==3.0.4;python_version<"3.5"', # Stay in sync with "requests"
144144
'chardet==4.0.0;python_version>="3.5"', # Stay in sync with "requests"
145-
'charset-normalizer==2.0.6;python_version>="3.5"', # Sync "requests"
145+
'charset-normalizer==2.0.7;python_version>="3.5"', # Sync "requests"
146146
"urllib3==1.26.7", # Must stay in sync with "requests"
147147
'requests==2.26.0;python_version<"3.5"',
148148
'requests==2.25.1;python_version>="3.5" and python_version<"3.6"',
@@ -212,7 +212,7 @@
212212
'pymysql==1.0.2;python_version>="3.6"',
213213
"pyotp==2.6.0",
214214
"boto==2.49.0",
215-
"cffi==1.14.6",
215+
"cffi==1.15.0",
216216
"toml==0.10.2",
217217
'Pillow==6.2.2;python_version<"3.5"',
218218
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
@@ -221,13 +221,14 @@
221221
'tornado==5.1.1;python_version<"3.5"',
222222
'tornado==6.1;python_version>="3.5"',
223223
'pdfminer.six==20191110;python_version<"3.5"',
224-
'pdfminer.six==20201018;python_version>="3.5"',
224+
'pdfminer.six==20201018;python_version>="3.5" and python_version<"3.6"', # noqa: E501
225+
'pdfminer.six==20211012;python_version>="3.6"',
225226
],
226227
extras_require={
227228
# pip install -e .[coverage]
228229
"coverage": [
229230
'coverage==5.5;python_version<"3.6"',
230-
'coverage==6.0.1;python_version>="3.6"',
231+
'coverage==6.0.2;python_version>="3.6"',
231232
'pytest-cov==2.12.1;python_version<"3.6"',
232233
'pytest-cov==3.0.0;python_version>="3.6"',
233234
],

0 commit comments

Comments
 (0)