From 049a4ae549336ea0621b484c5404183930dca888 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Tue, 7 Nov 2017 13:18:50 -0800 Subject: Uh...output claims pip somehow installing 7.x??? --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 3d328ada..d5af7cc5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,7 @@ python: install: # Ensure modern pip/etc on Python 3.3 workers (not sure WTF, but, eh) - pip install pip==9.0.1 + - pip --version # Self-install for setup.py-driven deps - pip install -e . # Dev (doc/test running) requirements -- cgit v1.2.3 From daaf911eeb6d7200996a591b7308cc8f3750408b Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Tue, 7 Nov 2017 13:35:48 -0800 Subject: Despite odd output, pip 9.0.1 is installing; so how old's our setuptools? --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d5af7cc5..e1756f5e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ python: install: # Ensure modern pip/etc on Python 3.3 workers (not sure WTF, but, eh) - pip install pip==9.0.1 - - pip --version + - pip freeze # Self-install for setup.py-driven deps - pip install -e . # Dev (doc/test running) requirements -- cgit v1.2.3 From 891f61e0fb33e774ee0493f8afec4a9cbe129286 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Tue, 7 Nov 2017 13:39:08 -0800 Subject: Well let's try latest setuptools, I guess. Been bitten in the past by too-new setuptools that introduce rando bugs, but, eh --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e1756f5e..7f44f384 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ python: - "pypy-5.6.0" install: # Ensure modern pip/etc on Python 3.3 workers (not sure WTF, but, eh) - - pip install pip==9.0.1 + - pip install pip==9.0.1 setuptools==36.6.0 - pip freeze # Self-install for setup.py-driven deps - pip install -e . -- cgit v1.2.3 From 430568e1289aee92eeb6f61dc2ea771f0bc22ff8 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Tue, 7 Nov 2017 13:47:40 -0800 Subject: OK this is good now, with the setuptools pin --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7f44f384..bb0ed5ab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,6 @@ python: install: # Ensure modern pip/etc on Python 3.3 workers (not sure WTF, but, eh) - pip install pip==9.0.1 setuptools==36.6.0 - - pip freeze # Self-install for setup.py-driven deps - pip install -e . # Dev (doc/test running) requirements -- cgit v1.2.3