Adam J. Stewart
Adam J. Stewart
I agree with not storing build assets in the repository, but it would be great to store those build assets in the PyPI tarballs so that you can download a...
@stsewd If I download 0.5.1 from PyPI or GitHub and run: ```console $ python setup.py build # or install ``` it errors out with: ``` error: [Errno 2] No such...
If I set the `CI` environment variable, I'm able to skip the call to `npm`. Is that advisable?
I agree with not having static files in the repo, as long as those files are in release tarballs on GitHub and PyPI. Has the `setup.py` been modified so that...
Nah, we're not installing from `master`, but I'm glad to hear that!
@vidartf Sorry, let me clarify. I'm a developer for the [Spack](https://spack.io) package manager. Spack is designed for supercomputers and obscure architectures like BlueGene-Q, ARM, RISC-V, Cray, etc. We try to...
@jasongrout thanks, it sounds like we just need to fix the autodetection for whether or not to build the javascript components. If we can figure out where to fix this,...
@vidartf tried both `--global-option` and `--install-option` but the build still tries to run `jlpm install`.
@samj1912 if I understand correctly, any docstring containing a section that is present in both Google-style and Numpy-style, such as: * Returns * Raises * Yields * See Also *...
> I'm not aware if there is an official Google style specification The pydocstyle docs point to https://google.github.io/styleguide/pyguide.html as the official style specification, I'm guessing that's what they use.