From 03e617204f5682a2aaaf9e0fcce2155f1cd81b42 Mon Sep 17 00:00:00 2001 From: dcookspi <92065525+dcookspi@users.noreply.github.com> Date: Mon, 13 Jan 2025 14:15:39 -0800 Subject: [PATCH] Fixes a bug preventing newer packages from being converted with python 3.9 and above (#1166) Updates pkginfo version to 1.12.0 for python 3.9 based builds of the spk-convert-pip package. Signed-off-by: David Gilligan-Cook --- packages/spk-convert-pip/requirements.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/spk-convert-pip/requirements.txt b/packages/spk-convert-pip/requirements.txt index 24df9fd574..c78822eab6 100644 --- a/packages/spk-convert-pip/requirements.txt +++ b/packages/spk-convert-pip/requirements.txt @@ -1,5 +1,7 @@ # 1.10.0 is the last version that supports python 3.7 -pkginfo==1.10.0 +pkginfo==1.10.0 ; python_version <= "3.7" +# 1.12.0 is required for newer python module package formats +pkginfo==1.12.0 ; python_version >= "3.9" packaging==20.9 # 0.40.0 latest at time of writing but no implied requirement for exactly this # version.