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.
我有一个 setup.py 脚本,它知道对 pyparsing 的依赖,实际上会安装它。但它正在获取最新版本 2.0.0,它(显然)与 python 2.x 不兼容。看起来我需要能够将安装程序限制为 pyparsing 的 1.5.x 版本,但找不到告诉 setup.py 脚本这种限制的方法,或者是否有可能。
我的 setup.py 正在使用 setuptools.setup,并在 install_requires 部分列出了 pyparsing。