Aaron Simmons
Aaron Simmons
Some ideas for fixing it: - Have clients pass in an explicit id to Subscribe/Unsubscribe along with the func ``` bus.Subscribe("foo", "handler2", handler2) bus.Unsubscribe("foo", "handler2") ``` - Subscribe could return...
I am also seeing this. Gradle v1.12 works, but v2.0 doesn't. When I do @gcoonrod's workaround of adding `tasks.jshint.` to the properties, a different error pops up: ``` * What...
Thanks @Scuilion that worked! @eriwen I think the plugin should report the error more clearly. Or at least the sample code on the main github page needs to be updated....
I am seeing this also. I think #15 has regressed.
* I don't mind switching to another CI service (Travis, etc). I went with GitLab CI because it allows for saving artifacts, which makes things simpler in some ways. *...
> I don't have strong opinions here, though I agree being able to save artifacts is a nice thing. One project that I like which I have used before is...
> Also I'd still prefer to keep at least the setup.py in the repository root, so that the package can be installed from git (eg pip install git+https://github.com/ethanhs/clang.git). I've refactored...
Good point about ppl not necessarily wanting the binaries. So the build directly from git will produce the whl by downloading the clang source, but not the binaries. I'm thinking...
I've pushed a new update that has all the download/extract logic in python now, along with some more CI stuff: https://gitlab.com/paleozogt/clang/pipelines/27826391 It includes a hack to download via `wget` for...
> No, this really doesn't help. I don't think running pip install ./python setup.py install or any combination should download anything by default, including clang sources. Ah, I see how...