我正在通过运行
来设置mozmill-automation包 python setup.py develop
setup.py文件具有依赖关系定义:
deps = [...,
'mozmill == 2.1-dev',
'mozversion >= 0.7'
]
...
setup(..., install_requires=deps, ...)
它最终下载 mozversion 1.1 ,这是pypi上最新的可用版本。 setuptools是否可以保证下载最新的可用依赖版本?
根据https://pythonhosted.org/setuptools/easy_install.html(在该页面上搜索“最新可用版本”)显示如此。但是,我不确定setuptools是否使用easy_install来下载依赖项。
注意:我没有使用virtualenv