setup.py 中的 install_requires 取决于安装的 Python 版本
我的 setup.py 看起来像这样:
from distutils.core import setup
setup(
[...]
install_requires=['gevent', 'ssl', 'configobj', 'simplejson', 'mechanize'],
[...]
)
在 Python 2.6(或更高版本)下,ssl 模块的安装失败并显示:
ValueError: This extension should not be used with Python 2.6 or later (already built in), and has not been tested with Python 2.3.4 or earlier.
是否有一种标准方法来仅为特定 python 版本定义依赖项?当然,我可以使用 if float(sys.version[:3]) if float(sys.version[:3])
if float(sys.version[:3]) < 来做到这一点。 2.6:
但也许有更好的方法来做到这一点。
My setup.py looks something like this:
from distutils.core import setup
setup(
[...]
install_requires=['gevent', 'ssl', 'configobj', 'simplejson', 'mechanize'],
[...]
)
Under Python 2.6 (or higher) the installation of the ssl module fails with:
ValueError: This extension should not be used with Python 2.6 or later (already built in), and has not been tested with Python 2.3.4 or earlier.
Is there a standard way to define dependencies only for specific python versions? Of course I could do it with if float(sys.version[:3]) < 2.6:
but maybe there is a better way to do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它只是一个列表,因此您必须在上面的某个地方有条件地构建一个列表。
通常会执行类似以下操作的操作。
It's just a list, so somewhere above you have to conditionally build a list.
Something like to following is commonly done.