From 77b1aff4559ebfde06e4244e8de993c12fcffde3 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Sun, 6 Sep 2020 15:37:57 -0400 Subject: [PATCH] Don't retry pip in ci.sh --- ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci.sh b/ci.sh index a83ae13f..fa14a482 100755 --- a/ci.sh +++ b/ci.sh @@ -41,7 +41,7 @@ python -m pip --version python -m pep517.build --source --out-dir dist/ . INSTALL_ARTIFACT=$(ls dist/*.tar.gz) -try-harder python -m pip install ${INSTALL_ARTIFACT}${INSTALL_EXTRAS} +python -m pip install ${INSTALL_ARTIFACT}${INSTALL_EXTRAS} python -m pip list python -m pip freeze