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:
parent
51687598b1
commit
4b5f8c3a75
1 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue