aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--make_release.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/make_release.py b/make_release.py
index b0c01d1..d729c8a 100644
--- a/make_release.py
+++ b/make_release.py
@@ -158,7 +158,8 @@ class InstallFromTestPyPI(Step):
tmpvenv = tempfile.mkdtemp(prefix="p2r_venv_")
self.do_cmd(
f"virtualenv {tmpvenv} && source {tmpvenv}/bin/activate && "
- "pip install --index-url https://test.pypi.org/simple/ "
+ "pip install --no-cache-dir --index-url "
+ "https://test.pypi.org/simple/ "
"--extra-index-url https://pypi.org/simple "
f"{context['pkgname']}=={context['version']}"
)