PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Wednesday the 2nd of September, 2020

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[05:11:40] <bn_work> Is something wrong with the MySQL-python package? I get the following error when trying to `pip3 install MySQL-python` it: https://www.irccloud.com/pastebin/vtVLJZYk/pip3_install_MySQL-python.log
[05:22:54] <bn_work> `pip3 install mysql` virtual package also seems to have a dependency on `mysql_config` (not sure where to get it? does this come with the `MySQL-client` brew package?): https://www.irccloud.com/pastebin/LcNs4N2h/pip3_install_mysql.log
[12:41:00] <ngoldbaum> bn_work: that’s a python2/python3 compatibility issue, it’s called configparser in python3, i’d guess this package was never updated to support python
[12:41:10] <ngoldbaum> support python3 that is
[14:01:02] <bn_work> ah, thanks, ended up working around both of the above by installing PyMySQL instead
[14:52:37] <nicksloan> I'm loading an EntryPoint from a module that happens to have already been imported, and it is running the module code a second time. is that expected behavior? is it documented somewhere, and is there a workaround?