From 57c2ef97c906495cc6d672ba02d1731bcbc419a2 Mon Sep 17 00:00:00 2001 From: feluelle Date: Mon, 25 Nov 2019 18:36:49 +0100 Subject: [PATCH] [AIRFLOW-6063] Remove astroid dependency 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"',