Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Upgrade flake8/pyflakes for Py3 compatibility
  • Loading branch information
saschanaz committed Jun 20, 2020
1 parent 232d926 commit 98a40a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions python/requirements.txt
Expand Up @@ -11,9 +11,9 @@ setuptools == 39.0
toml == 0.9.2

# For Python linting
flake8 == 2.4.1
flake8 == 3.8.3
pep8 == 1.5.7
pyflakes == 0.8.1
pyflakes == 2.2.0

# For buildbot checking
voluptuous == 0.10.5
Expand Down
6 changes: 3 additions & 3 deletions python/tidy/setup.py
Expand Up @@ -14,7 +14,7 @@
VERSION = '0.3.0'

install_requires = [
"flake8==2.4.1",
"flake8==3.8.3",
"toml==0.9.2",
"colorama==0.3.7",
"voluptuous==0.11.5",
Expand All @@ -26,13 +26,13 @@
try:
with open(os.path.join(here, 'README.rst')) as doc:
readme = doc.read()
except:
except FileNotFoundError:
readme = ''

try:
with open(os.path.join(here, 'HISTORY.rst')) as doc:
history = doc.read()
except:
except FileNotFoundError:
history = ''

long_description = readme + '\n\n' + history
Expand Down

0 comments on commit 98a40a4

Please sign in to comment.