[16:12:02] <dstufft> in general, all of our view functions are in webui.py and all of our data manipulation functions are in store.py
[16:16:42] <sigmavirus24> I'm just trying to figure out where it rejects an upload as being a dupe
[16:18:02] <sigmavirus24> Aha that's https://bitbucket.org/pypa/pypi/src/1bab886066b17880ada4cec987d3a12112e47d2a/webui.py?at=default&fileviewer=file-view-default#webui.py-2834
[16:18:39] <sigmavirus24> The funny thing is that the exception message is returned as the "reason" for the response
[16:19:15] <sigmavirus24> e.g., "HTTP/1.1 400 A file named "foo-1.2.3.tar.gz" already exists for foo-1.2.3. To fix p roblems...."
[16:57:43] <sigmavirus24> dstufft: I might be interested in sending a PR to do that because I already know where the MD5 validation is, but I probably won't have time
[16:59:18] <dstufft> I wish there was a less ugly name for CoC than CODE_OF_CONDUCT.md
[17:15:09] <willingc> sigmavirus24: /Library/Frameworks/Python.framework/Versions/3.5/Resources/Python.app/Contents/MacOS/Python: can't open file 'setup.py': [Errno 2] No such file or directory
[17:15:54] <dstufft> willingc: you need to download the scipy file from PyPI and unpack it
[17:15:58] <dstufft> setup.py will be inside there
[17:22:50] <willingc> dstufft, sigmavirus24: scipy depends on numpy so tried with numpy. Downloaded source, unpacked, and ./setup.py with these results
[17:22:57] <willingc> Running from numpy source directory.
[17:47:30] <sigmavirus24> My former coworkers who are type/haskell fiends just gave me a terrible idea: A flake8 plugin for python 3.5 only that integrates with mypy/typing module
[17:54:05] <sigmavirus24> "Stop encouraging people makign their python easier to reason about"
[18:29:29] <willingc> dstufft: Ok. I think that I figured out part of the scipy install issue. I did a ``pip show --files numpy`` and received a `Cannot locate installed-files.txt`. I was able to pip install pandas. I finally got the idea after another ``pip install scipy`` attempt that perhaps gfortran wasn't being found when ``pip install`` numpy or scipy and it was hanging with no indication. That seemed to have been the problem. I installed gfortran for os x using
[19:26:17] <qwcode> dstufft, I converted the pip docs to htmldir. the direct rtd link is working fine. http://pip.readthedocs.org/en/stable/installing/, but the pypa.io link is not https://pip.pypa.io/en/stable/installing.html
[19:27:04] <qwcode> dstufft, if you can't fix soon, I'll probably switch back
[19:28:20] <dstufft> qwcode: you probably need to purge
[19:39:23] <qwcode> ok, PyPUG is converted and rebuilt
[19:48:33] <dstufft> qwcode: https://pip.pypa.io/en/stable/installing.html should work now
[19:49:22] <sigmavirus24> dstufft: thoughts on moving pkginfo into PyPA? (https://bugs.launchpad.net/pkginfo/+bug/1437570/comments/1)
[19:54:05] <qwcode> dstufft, yea, it does. nested dirs with index.rst pages are still a problem though https://pip.pypa.io/en/latest/reference/index.html
[19:54:35] <dstufft> sigmavirus24: no real opinion, seems reasonable
[19:54:41] <dstufft> qwcode: bleh, OK I'll take a look
[19:57:28] <dstufft> qwcode: packaging.python.org should be working now
[19:57:33] <dstufft> going back to pip to fix that
[19:59:11] <sigmavirus24> dstufft: yeah, it's a matter of "pkginfo" looks unmaintained (hasn't seen much development since 2013) so maybe the people that use it (packaging people) can take care of it until it's irrelevant
[21:52:28] <xafer> hello, I was wondering what is the point of having "[metadata] requires-dist" in https://github.com/pypa/twine/blob/master/setup.cfg ?