Results 984 comments of Nathaniel J. Smith

@Alessandro-Barbieri If you have a python environment with pytest-trio installed, then you should be able to run the pytest-trio tests using `pytest --pyargs pytest_trio`.

#120 is a genuine bug that is partly due to the complexity of managing concurrent fixture startup -- specifically, if one fixture setup crashes, we stop creating new ones, but...

Not so much passing them through properly, but keeping track of which fixtures were currently being set up, and cancelling all of them instead of just the test.

> I hope that all makes sense. Unfortunately, for Blender in specific, I don't have control over the source code. There are many other issues and considerations that drive the...

@TylerGubala I understand you're in a difficult position, where you don't control either how Blender works or how Python packaging works, and are just trying to figure out some way...

Some discussion of this PEP on distutils-sig: http://thread.gmane.org/gmane.comp.python.distutils.devel/23712

Makes sense to me

What's the motivating use case? Wheels tags already let you select between 32bit and 64bit builds of a dependency...

IIUC there are supposed to be two options for putting scripts in wheels: - You can use the [console_scripts entrypoint](https://python-packaging.readthedocs.io/en/latest/command-line-scripts.html#the-console-scripts-entry-point) method, and then when your wheel is installed pip will...

I can think of two possible strategies, neither of which I've fully worked out: * Have a travis configuration that runs on every build, then checks the $TRAVIS_TAG envvar and...