Skip to content

Commit 8dc6a35

Browse files
committed
Update flake8 dependencies
1 parent e61c8d8 commit 8dc6a35

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ pdfminer.six==20201018;python_version>="3.5"
9191
coverage==5.5
9292
pytest-cov==2.11.1
9393
flake8==3.7.9;python_version<"3.5"
94-
flake8==3.9.0;python_version>="3.5"
94+
flake8==3.9.1;python_version>="3.5"
9595
pyflakes==2.1.1;python_version<"3.5"
9696
pyflakes==2.3.1;python_version>="3.5"
9797
pycodestyle==2.5.0;python_version<"3.5"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
'>>> Confirm release PUBLISH to PyPI? (yes/no): ')).lower().strip()
3838
if reply == 'yes':
3939
print("\n*** Checking code health with flake8:\n")
40-
os.system("python -m pip install 'flake8==3.9.0'")
40+
os.system("python -m pip install 'flake8==3.9.1'")
4141
flake8_status = os.system("flake8 --exclude=temp")
4242
if flake8_status != 0:
4343
print("\nWARNING! Fix flake8 issues before publishing to PyPI!\n")
@@ -200,7 +200,7 @@
200200
# pip install -e .[flake]
201201
'flake': [
202202
'flake8==3.7.9;python_version<"3.5"',
203-
'flake8==3.9.0;python_version>="3.5"',
203+
'flake8==3.9.1;python_version>="3.5"',
204204
'pyflakes==2.1.1;python_version<"3.5"',
205205
'pyflakes==2.3.1;python_version>="3.5"',
206206
'pycodestyle==2.5.0;python_version<"3.5"',

0 commit comments

Comments
 (0)