Describe the bug
pipx is documented to support Python >= 3.7:
|
requires-python = ">=3.7" |
This test actually tests Python >=3.6:
|
if sys.version_info < (3, 6, 0): |
|
sys.exit( |
|
"Python 3.6 or later is required. " |
|
"See https://github.com/pypa/pipx " |
|
"for installation instructions." |
|
) |
Is the above test really needed, in addition to requires-python? Which corner case is it supposed to catch?
Could be fixed by #1005 (comment).
Describe the bug
pipx is documented to support Python >= 3.7:
pipx/pyproject.toml
Line 10 in 238ae43
This test actually tests Python >=3.6:
pipx/src/pipx/__init__.py
Lines 3 to 8 in 238ae43
Is the above test really needed, in addition to
requires-python? Which corner case is it supposed to catch?Could be fixed by #1005 (comment).