[13:21:34] <mage_> any idea how could I specify an install_requires packages which isn't on pypi ?
[13:22:10] <mage_> I tried dependency_links=['git+https://some/github/repo#egg=mypackage'] but it doesn't seems to work
[13:24:33] <mgedmin> I would use install_requires=['mypackage >= 1.2.3'] targetting the (future) version that has the commit you need, and put the git+https://... link in a requirements.txt
[13:24:44] <mgedmin> dependency_links are ignored by default iirc