Alex Tremblay
Alex Tremblay
what you're asking for (to have commands run from skhd work the same as they do when run from your terminal) is possible, but very complex and beyond the scope...
I would also love to see a Mac OS implementation of this!
> Don't think this is a good idea. Since this will fail isolated builds. > > ```shell > python -m pip build > python -m build . > python -m...
Ahh, ok, that makes a lot of sense. Thanks I'm writing unit tests now, and testing has revealved something interesting: when building a porject with a source root outside the...
hmmm.... I've been poking at this with a debugger, and it seems like when poetry is packaging sdist archives, it generates a list of `BuildIncludeFiles` whose source root attribute is...
Ahhhh, i see, that makes sense. with a source tarball, you want the code layout to match the actual project source code layout so that setup.py can build it correctly....
> Speaking a little bit for @alextremblay, this is more blocked on design issues than missing/failing tests right now. We need to figure out how we can generate source distributions...
I think i found the culprit, in [yasha/cli.py](https://github.com/kblomqvist/yasha/blob/master/yasha/cli.py#L103-L106)
The problem with using `click.testing.CLIRunner` to use yasha as a library in another python application is that it executes the yasha cli in an isolated subprocess for testing purposes. This...
I think it makes more sense to reserve STDIN for templates. If you want to dynamically populate variables at runtime without leaving stale data files all over the place, perhaps...