Can a Python package depend on a specific version control revision of another Python package?

前端 未结 4 2010
孤街浪徒
孤街浪徒 2020-12-13 16:29

Some useful Python packages are broken on pypi, and the only acceptable version is a particular revision in a revision control system. Can that be expressed in setup.p

4条回答
  •  萌比男神i
    2020-12-13 17:00

    If you really require an obscure version of another package, and there's no way to make do with other versions, you might want to simply distribute that version of the package with your own. If necessary put it in your own namespace to ensure that your version is the one that is used.

提交回复
热议问题