-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Read Pipfile and as per https://pipenv-fork.readthedocs.io/en/latest/basics.html:
Specify your target Python version in your Pipfile’s
[requires]section. Ideally, you should only have one target Python version, as this is a deployment tool.python_versionshould be in the formatX.Yandpython_full_versionshould be inX.Y.Zformat.
When the format is X.Y, we need to decide between:
- Appending
.0to it, or - Shipping with a hardcoded default for each minor stream (e.g. 3.7 -> 3.7.16), or
- Dynamically looking up all available versions
(1) risks being too old. (2) may be a pragmatic trade-off between speed and accuracy. (3) ensures we always get the latest, but is slower/more error prone.
Metadata
Metadata
Assignees
Labels
No labels