pipenv icon indicating copy to clipboard operation
pipenv copied to clipboard

Specify Python Version Range in Pipfile

Open Semnodime opened this issue 2 months ago • 3 comments

Issue description

[requires]
python_version = ">=3.12"

Expected result

Choose the latest python version available on the system to satisfy the constraints or raise the constraint error.

Actual result

Warning: Python >=3.12 was not found on your system...
Neither 'pyenv' nor 'asdf' could be found to install Python.

Steps to replicate

pipenv --python 3.12
# Change last line in Pipfile to `python_version = ">=3.12"`
pipenv --rm
pipenv --install

Semnodime avatar Apr 27 '24 02:04 Semnodime