Browse Source

ci: Rectify pip version being pinned (#23954)

The pinning was done unintentionally during the work of https://github.com/getsentry/sentry/pull/23939/commits
Armen Zambrano G 4 years ago
parent
commit
ec07d00a89
1 changed files with 1 additions and 2 deletions
  1. 1 2
      Makefile

+ 1 - 2
Makefile

@@ -62,8 +62,7 @@ ensure-pinned-pip: ensure-venv upgrade-pip
 
 upgrade-pip:
 	# pip versions before 20.1 do not have `pip cache` as a command which is necessary for the CI
-	# XXX: Temp change to force cache invalidation
-	$(PIP) install --no-cache-dir --upgrade "pip==20.3.3"
+	$(PIP) install --no-cache-dir --upgrade "pip>=20.1"
 
 setup-git-config:
 	@git config --local branch.autosetuprebase always