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 ")