From 0bd79b1d5dd94570f8e3629b991642e919acdb94 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 19 Oct 2021 13:32:00 -0700 Subject: [PATCH] Add old python packaging pin The packaging package doesn't support python3.5 or older anymore. Bindep is still occasionally used on systems without newer python. Add an environment marker to our requirements to install older packaging on those systems. Change-Id: I28949b0bb7d4978fc7f71109d0c65b9b76d6563f --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6ab819d..18ad23b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ distro pbr>=2.0.0 # Apache-2.0 Parsley -packaging +packaging ; python_version >= '3.6' +packaging<21.0 ; python_version < '3.6'