PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Thursday the 17th of July, 2014

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[17:28:12] <buck1> is there a simple way to discover the filename of a wheel before it's built?
[17:29:04] <buck1> i'm building a tiny bit of automation, and i'd like to be more specific than *.whl
[17:52:01] <apollo13> buck1: http://legacy.python.org/dev/peps/pep-0427/#file-format ?
[17:55:09] <buck1> apollo13: is there a cli interface to such a function?
[17:55:27] <apollo13> no idea, probably not
[17:57:33] <DanielHolth> Maybe you could do something with distribution.dist_files getattr(self.distribution, 'dist_files', []).append(
[17:57:33] <DanielHolth> ('bdist_wheel', get_python_version(), wheel_name))
[17:57:44] <DanielHolth> set by bdist_wheel to make "python setup.py bdist_wheel upload" work