Pip:指定次要版本

发布于 2024-11-08 06:26:18 字数 154 浏览 0 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

记忆消瘦 2024-11-15 06:26:18

根据 Ian Bicking 的说法:

Django>=1.3,<1.4

但是,显然这样做更安全

Django>=1.3,<1.3.99

According to Ian Bicking:

Django>=1.3,<1.4

However, it's apparently safer to do:

Django>=1.3,<1.3.99
狠疯拽 2024-11-15 06:26:18

我的应用程序需要 Django 版本 1.3.x

在您的情况下,请使用以下之一:


兼容版本

Django~=1.3.0

参考: PEP 440 兼容版本


版本匹配

Django==1.3.*

参考:PEP 440 版本匹配


有序比较

Django>=1.3,<1.4

注意:在 2015 年提交中引入的更改之后,有序运算符适用于您的情况< /a>

参考:PEP 440 包含有序比较

参考:< a href="https://peps.python.org/pep-0440/#exclusive-ordered-comparison" rel="nofollow noreferrer">PEP 440 独家排序比较


my app needs Django version 1.3.x

In your case, use one of:


Compatible release

Django~=1.3.0

Ref: PEP 440 Compatible release


Version matching

Django==1.3.*

Ref: PEP 440 Version matching


Ordered comparison

Django>=1.3,<1.4

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


~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文