PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Sunday the 25th of January, 2015

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[00:50:21] <nedbat> i have two interrelated projects. I'd like to bump the version numbers of both, and update the setup.py install requirements to the new version numbers. I want to then test them. But the tox.ini will now require a version that doesn't exist on pypi. What are my options for getting tox's pip to find a local kit that I make?
[00:51:29] <tos9> --find-links probably
[00:53:09] <nedbat> tos9: any idea of how to provide that via tox? Ideally with an environment variable.
[00:53:30] <tos9> nedbat: well pip respects environment variables, so presumably PIP_FIND_LINKS= might make tox behave
[00:53:41] <tos9> although tox does one or two hilarious things with environment variables unfortunately.
[00:54:22] <nedbat> tos9: there's also ~/.pip/pip.conf
[00:54:39] <tos9> yep
[00:54:55] <tos9> (but if the envvar doesn't work I would assume tox would be passing pip the dont-read-conf-files option too)
[00:55:04] <nedbat> tos9: thanks, this looks promising!
[00:55:07] <tos9> mhm
[00:57:42] <nedbat> tos9: beautiful! thanks!
[00:59:58] <tos9> np