PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Friday the 3rd of June, 2016

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[01:30:27] <k_art_> have put my pip.conf inside a virtualenv folder, but it's not using it. can I let pip print which conf it is using?
[01:31:11] <k_art_> or is it possible to have different configuration sections for different pypi servers?
[04:19:27] <tos9> k_art_: What are you trying to set
[09:58:39] <rd_> Hi, if I have a virtual env already crated can make it --system-site-packages
[12:54:37] <wiggy> you can try re-creating the venv on top of the existing one
[12:54:39] <wiggy> that might work
[13:37:58] <will_f> Hi. Installed a package from conda-forge, exported the working environment using `conda list -e > e.yml`, then tried `create -n myenv -c conda-forge -f e.yml` but get lots of conflicts e.g. `backports 1.0 py35_0 -> python 3.5*`. Any ideas?
[15:07:52] <ngoldbaum> will_f: this isn't really the right place to ask - maybe open an issue on the conda-forge issue tracker?
[18:09:33] <laharah_> I was wondering if anyone could tell me if pep 508 declarations work in install_requires sections?
[18:45:15] <tos9> laharah_: I haven't read PEP 508, but I doubt it -- AIUI install_requires is handled by setuptools directly. So if PEP 508 has to do with environment markers and the like, they go in extras_require which pip handles.
[18:45:25] <tos9> Yeah.
[19:04:53] <laharah_> the pep says that it's in use on pip, though I'm not sure where. I'm having trouble getting `:sys_platform=="win32"` to actuall install extra dependencies on windows so was hoping pep 508 would help
[19:15:54] <dstufft> laharah_: I think there's a bug with that, that I might not have released a fix for yet
[19:21:59] <simon_weber> I'm running into a pkg_resources.RequirementParseError in a third party library when dealing with vcs requirements: https://github.com/blue-yonder/devpi-builder/issues/99. Is there a different way of parsing the requirements file that I can recommend to them?
[19:22:15] <simon_weber> their code is here: https://github.com/blue-yonder/devpi-builder/blob/master/devpi_builder/requirements.py
[19:45:08] <laharah_> tos9: thanks for the help, turned out to be a bug in tox
[19:54:37] <tos9> np, glad you got it worked out