PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Thursday the 24th of May, 2018

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[00:46:55] <dfee> how can i limit my package to python3.6+ OR pypy 6.0.0+ (the python3.5 equiv)
[00:56:35] <toad_polo> dfee: You have something that works on pypy 6.0 but not CPython 3.5?
[00:57:15] <njs> plausible... pypy 6 is like cpython 3.5, plus a few features from 3.6, like f-strings
[00:57:54] <toad_polo> Hmm. Anyway good question. I'm not sure how to do that.
[00:59:55] <dfee> toad_polo: yeah, i require that my var-keyword arguments be ordered
[08:23:43] <madonius> hi
[08:23:58] <madonius> try running `pip search pam`
[08:24:08] <madonius> for me it explodes reproducably
[08:24:22] <madonius> https://github.com/pypa/pip/issues/5435
[08:52:53] <dfee> is [bdist_wheel] python_tag=py36 ... the right way to build a wheel only for python3.6+?
[08:53:28] <dfee> i want to make sure i understand these docs: https://wheel.readthedocs.io/en/stable/#defining-the-python-version
[16:10:43] <collinanderson> pip 10 broke the way I've been including html files in my internal library. what's the proper way to include non-py files in setup.py?
[16:17:07] <Siecje> collinanderson: How are you currently doing it? You can use package-data or MANIFEST.in
[16:19:44] <collinanderson> Siecje: using `data_files`. :) here's my ancient setup.py (written by a colleague), nearly unchanged since 2010.
[16:20:09] <collinanderson> ohh, and the weird thing is my package files are in the root directory, rather than a separate directory :/
[16:46:38] <collinanderson> ohh, i forgot to send the link. https://gist.github.com/collinanderson/47d6e15c8b01c052753cae0f73726520
[16:46:53] <collinanderson> i think i'll use MANIFEST.in. what's the difference between graft and recursive-include?
[16:50:03] <collinanderson> i think i'm going to go with graft, and then global-exclude __pycache__, global-exclude *.py[co]
[21:10:10] <redj> Hi, how can I exclude files from a package? I have MANIFEST.in and exclude_package_data without success
[21:10:25] <ngoldbaum> don't list them in MANIFEST.in?
[21:10:37] <redj> https://gist.github.com/redj/43e0585997fa39b9cc1775a550456b04
[21:11:02] <redj> ngoldbaum: I have only tried excluding files in MANIFEST.in
[21:11:30] <redj> I don't even list any of the files that are included, it's all added because those files are tracked in the git repository
[21:11:50] <redj> but I want to know how I can exclude tracked files
[21:12:32] <redj> _habnabit: I've provided more information in https://gist.github.com/redj/43e0585997fa39b9cc1775a550456b04
[21:14:11] <ngoldbaum> what does your MANIFEST.in look like?