Takeshi
Takeshi
Any updates on this?
Hi. This is just a thought, but I think it would be better to introduce a boolean to determine whether the dependency is for development. Also, instead of `groups`, you...
@njlr Ah. I see what you're saying. Would something like the following be possible? ```python macos_deps = buckaroo_deps(['macos']) # defaults to False macos_dev_deps = buckaroo_deps(['macos'], dev=True) # or maybe filtering...
It could also have another keyword-parameter `groups` so the signature would look something like: ```python buckaroo_deps(groups=[], os=[], dev=False); # where groups and os can be a string, '*' ``` A...
Hi, I'm having a similar issue on MacOS when trying to build two .g4 files (one being the lexer and the other being the parser). The two files are located...