I'm trying to get buildout to use a specific, forked & tweaked package from my github account, however it seems to be completely ignoring the reference and instead opting for the standard PyPi module.
Here's my buildout config:
[buildout]
parts = foo
find-links = http://github.com/me/themodule/tarball/version#egg=themodule-version
versions = versions
eggs = ...
[versions]
themodule=version
[foo]
eggs =
${buildout:eggs}
themodule
I'm using the latest zc.buildout
from pypi, version 1.5.2.
I've tried with both http
and https
for the link (because of the recent github change). The link is active and works directly, so I'm guessing it's my configuration. Am I missing something?