PMXBOT Log file Viewer

Help | Karma | Search:

#pypa-dev logs for Tuesday the 14th of June, 2016

(Back to #pypa-dev overview) (Back to channel listing) (Animate logs)
[14:50:57] <zloidemon> Hi, why pip install relplace '_' in package names to the '-'?
[14:51:29] <apollo13> that is an historic artifact more or less which will not change
[14:51:44] <apollo13> basically package names are normalized according to a few rules
[14:53:35] <zloidemon> apollo13: thanks, and next question. I have my own server (nginx + autoindex on). How to give access to the packages to get them with name of packages where exists '_'? I saw logs to download and check files on the web server it only shown not found for all of them because changed '_' to '-'
[14:54:13] <apollo13> zloidemon: implement the normalization when you download the packages
[14:54:32] <apollo13> ie before putting them into nginx doc root
[14:55:55] <zloidemon> oh, i'll use sed to change names. heh, thank you!