From ba42b55c651155c9dbbf748a6b2bca444024da66 Mon Sep 17 00:00:00 2001 From: DailyDreaming Date: Wed, 11 Mar 2020 11:29:58 -0700 Subject: [PATCH] Pin setuptools during 'make prepare'. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3d9fe8a388..0106924a7d 100644 --- a/Makefile +++ b/Makefile @@ -212,7 +212,8 @@ check_build_reqs: || ( printf "$(red)Build requirements are missing. Run 'make prepare' to install them.$(normal)\n" ; false ) prepare: check_venv - $(pip) install mock==1.0.1 pytest==4.3.1 pytest-cov==2.6.1 stubserver==1.0.1 pytest-timeout==1.3.3 cwltest mypy + $(pip) install mock==1.0.1 pytest==4.3.1 pytest-cov==2.6.1 stubserver==1.0.1 pytest-timeout==1.3.3 \ + setuptools==45.3.0 cwltest mypy check_venv: @$(python) -c 'import sys, os; sys.exit( int( 0 if "VIRTUAL_ENV" in os.environ else 1 ) )' \