josh 5 лет назад
Родитель
Сommit
12f448985f
2 измененных файлов с 2 добавлено и 7 удалено
  1. 1 4
      .travis.yml
  2. 1 3
      Makefile

+ 1 - 4
.travis.yml

@@ -25,9 +25,6 @@ addons:
 env:
   global:
     - NODE_ENV=development
-    # PIP_VERSION causes issues because: https://github.com/pypa/pip/issues/4528
-    # Note: this has to be synced with the pip version in the Makefile.
-    - PYTHON_PIP_VERSION=19.2.3
     - PIP_DISABLE_PIP_VERSION_CHECK=on
     - PIP_QUIET=1
     - SENTRY_LIGHT_BUILD=1
@@ -40,7 +37,7 @@ env:
     - NODE_OPTIONS=--max-old-space-size=4096
 
 before_install:
-  - &pip_install pip install "pip==${PYTHON_PIP_VERSION}"
+  - &pip_install pip install --upgrade pip
 
 script:
   # certain commands require sentry init to be run, but this is only true for

+ 1 - 3
Makefile

@@ -1,6 +1,4 @@
 PIP := python -m pip --disable-pip-version-check
-# Note: this has to be synced with the pip version in .travis.yml.
-PIP_VERSION := 19.2.3
 WEBPACK := NODE_ENV=production ./bin/yarn webpack
 YARN := ./bin/yarn
 
@@ -52,7 +50,7 @@ ensure-venv:
 	@./scripts/ensure-venv.sh
 
 ensure-pinned-pip:
-	$(PIP) install "pip==$(PIP_VERSION)"
+	$(PIP) install --upgrade pip
 
 setup-git:
 	@echo "--> Installing git hooks"