From ee44a5c3236391988a5cc3579532a9be6372e9b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Gmach?= Date: Fri, 3 Jul 2020 14:31:22 +0200 Subject: [PATCH] Update `test setup` description (#4307) The description, as it was, did not work with an older version of pip, as the installation errored. An updated version of pip fixes the installation problem. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f6a9a0264..7be3d2bc4 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,8 @@ Run: ``` $ python3.6 -m venv .venv3 $ source .venv3/bin/activate -(.venv3)$ pip3 install -r requirements-tests-py3.txt +(.venv3)$ pip install -U pip +(.venv3)$ pip install -r requirements-tests-py3.txt ``` This will install mypy (you need the latest master branch from GitHub), typed-ast, flake8 (and plugins), pytype, black and isort.