From 999674e7f0c986a1c839a6d630ea95d045804111 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Sun, 14 Oct 2018 23:10:52 -0700 Subject: [PATCH] Add constraint for pycparser. (cherry picked from commit 6a1aa51a743e9bdfdf2b5ed24e36aa142e5dc4bc) --- test/runner/requirements/constraints.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test/runner/requirements/constraints.txt b/test/runner/requirements/constraints.txt index 90ddd3bcc28..efb6871a601 100644 --- a/test/runner/requirements/constraints.txt +++ b/test/runner/requirements/constraints.txt @@ -23,3 +23,4 @@ openshift >= 0.6.2 # merge_type support virtualenv < 16.0.0 ; python_version < '2.7' # virtualenv 16.0.0 and later require python 2.7 or later pyopenssl < 18.0.0 ; python_version < '2.7' # pyOpenSSL 18.0.0 and later require python 2.7 or later pyfmg == 0.6.1 # newer versions do not pass current unit tests +pycparser < 2.19 ; python_version < '2.7' # pycparser 2.19 and later require python 2.7 or later