release: Force re-install for pip tool dependencies.

- pdf2txt.py needed a re-install to update to the new version.
This commit is contained in:
Andrew Hamilton 2021-05-18 23:15:45 +10:00
parent 51687598b1
commit 4b5f8c3a75

View file

@ -20,7 +20,8 @@ if dist_deps:
check=True)
if pip_deps:
subprocess.run(["python" + eris.tools.PYTHON_VERSION, "-m", "pip",
"install"] + list(pip_deps), check=True)
"install", "--force-reinstall"] + list(pip_deps),
check=True)
if go_deps:
subprocess.run(["sudo", "apt-get", "-y", "install", "golang-go"],
check=True)