From 14f912500e6e1d1b065c29a7896eb0b4b4725461 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen <paulus@home-assistant.io> Date: Tue, 26 Feb 2019 12:33:40 -0800 Subject: [PATCH] Pin isort (#21463) --- homeassistant/package_constraints.txt | 4 ++++ script/gen_requirements_all.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index d0a192a9dc7..838c3f31bc5 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -26,3 +26,7 @@ pycrypto==1000000000.0.0 # Contains code to modify Home Assistant to work around our rules python-systemair-savecair==1000000000.0.0 + +# Newer version causes pylint to take forever +# https://github.com/timothycrosley/isort/issues/848 +isort==4.3.4 diff --git a/script/gen_requirements_all.py b/script/gen_requirements_all.py index 47028ef3530..926aadfc3a5 100755 --- a/script/gen_requirements_all.py +++ b/script/gen_requirements_all.py @@ -157,6 +157,10 @@ pycrypto==1000000000.0.0 # Contains code to modify Home Assistant to work around our rules python-systemair-savecair==1000000000.0.0 + +# Newer version causes pylint to take forever +# https://github.com/timothycrosley/isort/issues/848 +isort==4.3.4 """ -- GitLab