From cdb4e5e2aa7733cf1d5f87943a3383cc2b194bb6 Mon Sep 17 00:00:00 2001 From: Kris Wilson Date: Mon, 10 Jul 2017 14:12:29 -0700 Subject: [PATCH] Bump pex version to 1.2.8. (#4735) This pulls in fixes for improved wheel installation in a pex. --- 3rdparty/python/requirements.txt | 2 +- .../backend/python/tasks2/test_resolve_requirements.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/3rdparty/python/requirements.txt b/3rdparty/python/requirements.txt index e31739052c1..7f78c0e3b48 100644 --- a/3rdparty/python/requirements.txt +++ b/3rdparty/python/requirements.txt @@ -11,7 +11,7 @@ mock==2.0.0 packaging==16.8 pathspec==0.5.0 pep8==1.6.2 -pex==1.2.6 +pex==1.2.8 psutil==4.3.0 pyflakes==1.1.0 Pygments==1.4 diff --git a/tests/python/pants_test/backend/python/tasks2/test_resolve_requirements.py b/tests/python/pants_test/backend/python/tasks2/test_resolve_requirements.py index fd5cecd9f76..c18f93a773f 100644 --- a/tests/python/pants_test/backend/python/tasks2/test_resolve_requirements.py +++ b/tests/python/pants_test/backend/python/tasks2/test_resolve_requirements.py @@ -90,7 +90,7 @@ def name_and_platform(whl): # pycparser is a dependency of cffi only on CPython. We might as well check for it, # as extra verification that we correctly fetch transitive dependencies. if PythonInterpreter.get().identity.interpreter == 'CPython': - expected_name_and_platforms.add(('pycparser-2.17', 'any')) + expected_name_and_platforms.add(('pycparser-2.18', 'any')) self.assertTrue(expected_name_and_platforms.issubset(names_and_platforms), '{} is not a subset of {}'.format(expected_name_and_platforms,