Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
pipenv 有没有办法在 Pipfile 中指定 python 的最低版本?
像这样的东西会起作用吗?
[requires] python_version = ">=python 3.5"
不,不pipenv支持这个。根据pipenv 问题 1050 功能请求,作者明确选择不实现它。pipenv
pipenv
请注意,您可以指定:
python_version = "3"
允许任何版本的 Python 3。不完全符合您的要求,但对于某些项目来说可能就足够了。