From e51e1c770dad235b3fd8fdc330e44b83df8dcc4a Mon Sep 17 00:00:00 2001 From: Felix Uellendall Date: Tue, 26 Nov 2019 12:24:53 +0100 Subject: [PATCH] [AIRFLOW-6063] Remove astroid dependency (#6659) Note this dependency was only meant to temporarily fix an issue with pylint and astroid. See https://github.com/PyCQA/pylint/issues/3123 for more information. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 1840b5ca3b0c3..bf885e0b59794 100644 --- a/setup.py +++ b/setup.py @@ -277,7 +277,6 @@ 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"',