From 5a4cb0e1e5cf2725df49a6774b9b6d1b821496c8 Mon Sep 17 00:00:00 2001 From: Vincent Roseberry Date: Wed, 15 Jun 2022 09:28:08 -0400 Subject: [PATCH] Remove flake8 (#1169) This package is causing a downgrade of the `importlib-metadata` package which is causing a cascading number of reinstalls: https://github.com/PyCQA/flake8/blob/9f608813b80caf5a966e44d4bfb5e032159eb3e2/setup.cfg#L45 Flake8 is a style checker for Python but we are not using it AFAIK. We don't have Jupyter plugins for it neither. --- Dockerfile.tmpl | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile.tmpl b/Dockerfile.tmpl index 10faf2ce..f0f50136 100644 --- a/Dockerfile.tmpl +++ b/Dockerfile.tmpl @@ -179,7 +179,6 @@ RUN apt-get install -y libfreetype6-dev && \ pip install wordcloud && \ pip install xgboost && \ pip install pydot && \ - pip install flake8 && \ # Pinned because it breaks theano test with the latest version (b/178107003). pip install theano-pymc==1.0.11 && \ pip install python-Levenshtein && \