Skip to content

Commit

Permalink
[AIRFLOW-5579] Fix astroid version
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk committed Oct 1, 2019
1 parent 65851f7 commit bb9f23b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ def write_version(filename: str = os.path.join(*["airflow", "git_version"])):
# DEPENDENCIES_EPOCH_NUMBER in the Dockerfile
############################################################################################################
devel = [
'astroid~=2.2.5', # to be removed after pylint solves this: https://github.com/PyCQA/pylint/issues/3123
'beautifulsoup4~=4.7.1',
'click==6.7',
'contextdecorator;python_version<"3.4"',
Expand All @@ -292,7 +293,8 @@ def write_version(filename: str = os.path.join(*["airflow", "git_version"])):
'parameterized',
'paramiko',
'pre-commit',
'pylint~=2.3.1',
'pylint~=2.3.1', # to be upgraded after fixing https://github.com/PyCQA/pylint/issues/3123
# We should also disable checking docstring at the module level
'pysftp',
'pywinrm',
'qds-sdk>=1.9.6',
Expand Down

0 comments on commit bb9f23b

Please sign in to comment.