From 9c34b3908742b4a863306462b61a718b62995421 Mon Sep 17 00:00:00 2001 From: Josiah Quant Date: Fri, 17 Oct 2025 07:17:01 -0500 Subject: [PATCH] Add support for a specific py package version --- makePipRecipes.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/makePipRecipes.py b/makePipRecipes.py index 025243a..f033b5e 100644 --- a/makePipRecipes.py +++ b/makePipRecipes.py @@ -122,6 +122,11 @@ def removeWorkingFolder(): print('ERROR: Insert the regular Python pip name not a URL (e.g. "django")') sys.exit() + print('Enter the Python package version you want to use. (Leave blank for latest version.)') + PackageVersion = input('Package Version: ').strip() + if PackageVersion: + Pipurl = f"{PipName}=={PackageVersion}" + selectedPythonVersion = 0 print("Choose the requiered Python Version:") print(" Python 1-2: 1,2 ")