Pip:指定次要版本
在我的 requirements.txt
文件中,我想指定我的应用程序需要 Django 版本 1.3.x。也就是说,要么是 1.3.0,要么是 1.3.1,要么是 1.3.2,等等(当这些版本发布时)。但不是 1.4,当它发布时。
这个的语法是什么?
In my requirements.txt
file I want to specify that my app needs Django version 1.3.x. That is, either 1.3.0, or 1.3.1, or 1.3.2, etc. (When these come out.) But not 1.4, when it comes out.
What's the syntax for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 Ian Bicking 的说法:
但是,显然这样做更安全:
According to Ian Bicking:
However, it's apparently safer to do:
在您的情况下,请使用以下之一:
兼容版本
参考: PEP 440 兼容版本
版本匹配
参考:PEP 440 版本匹配
有序比较
注意:在 2015 年提交中引入的更改之后,有序运算符适用于您的情况< /a>
参考:PEP 440 包含有序比较
参考:< a href="https://peps.python.org/pep-0440/#exclusive-ordered-comparison" rel="nofollow noreferrer">PEP 440 独家排序比较
In your case, use one of:
Compatible release
Ref: PEP 440 Compatible release
Version matching
Ref: PEP 440 Version matching
Ordered comparison
Note: ordered operators work for your case after the change introduced in this commit in 2015
Ref: PEP 440 Inclusive ordered comparison
Ref: PEP 440 Exclusive ordered comparison