SVN URLs in setuptools / EasyInstall?
I am trying to use setuptools and EasyInstall to handle dependency management for me, using a local subversion server. The svn server uses svnserve, not http. I have the following in my setup call: install_requires = ["myModule"], dependency_links = ["svn://myServer.myCompany.com/myModule"], But setuptools does not like the svn:// URL. I get the following error: Searching for myModule Reading svn://myServer.myCompany.com/myModule Download error: unknown url type: svn -- Some packages may not be found! I have also tried using find_links in the setup.cfg, rather than dependency_links in the setup.py. I get the same result. Here is my setup.cfg: [easy_install] allow_hosts = *.myCompany.com find_links = svn://myServer.myCompany.com/myModule The release notes for EasyInstall 0.3a2 say that download support was added for svn: URLs, which is what makes me think this is supposed to work. Is this a bug, or am I doing something wrong, or am I just misinterpreting what the tool can do? Thanks, Mike ______________________________________________________________________ This email may contain privileged or confidential information, which should only be used for the purpose for which it was sent by Xyratex. No further rights or licenses are granted to use such information. If you are not the intended recipient of this message, please notify the sender by return and delete it. You may not use, copy, disclose or rely on the information contained in it. Internet email is susceptible to data corruption, interception and unauthorised amendment for which Xyratex does not accept liability. While we have taken reasonable precautions to ensure that this email is free of viruses, Xyratex does not accept liability for the presence of any computer viruses in this email, nor for any losses caused as a result of viruses. Xyratex Technology Limited (03134912), Registered in England & Wales, Registered Office, Langstone Road, Havant, Hampshire, PO9 1SA. The Xyratex group of companies also includes, Xyratex Ltd, registered in Bermuda, Xyratex International Inc, registered in California, Xyratex (Malaysia) Sdn Bhd registered in Malaysia, Xyratex Technology (Wuxi) Co Ltd registered in The People's Republic of China and Xyratex Japan Limited registered in Japan. ______________________________________________________________________
participants (1)
-
Mike Moerk