Fabien Pertuy

Results 23 comments of Fabien Pertuy

Hi @takluyver, Nice work with this kernel, it's really useful! Digging up this issue as I created a conda package for `bash_kernel`, but not being able to fully uninstall is...

For the record, clean uninstall is achieved with `jupyter kernelspec uninstall bash`. Use `-f` flag for non-interactive use. @payne92 I guess this issue could be closed.

I believe your problem should be solved if you name your arguments. ``` Usage: prog -o ... -p ... ``` Then your last example should return: ```json { "-o": true,...

I [had it working](http://try.docopt.org/?doc=Naval+Fate.%0D%0A%0D%0AUsage%3A%0D%0A++prog+%5B%28-o+%3Cargo%3E%29...+%28-p+%3Cargp%3E%29...%5D%0D%0A%0D%0AOptions%3A%0D%0A++-h+--help+++++Show+this+screen.%0D%0A++--version+++++Show+version.%0D%0A++-o%0D%0A++-p%0D%0A%0D%0A&argv=-o+O1+-o+O2+-p+P1+-p+P2++) by grouping the option and argument, and placing the ellipsis on the group. ``` Usage: prog (-o )... (-p )... ``` You need the same number...

Had similar issue with repeated ellipsis. Grouping seems to be the key, have a look at #333 .

It seems that if `` is mentioned in the Options section ``` Usage: script.py -o Options: -o --option Description. ``` And you call it with `script.py -o my_arg`, then `docopt`...

Funny, I was just looking for autogluon from conda-forge today. I suggest you have a look at the [conda-forge doc](https://conda-forge.org/docs/maintainer/adding_pkgs.html) if you're not familiar with contributing packages there. I had...

> We should also investigate automating GitHub Actions to do the conda-forge release at the same time as the PyPi release. Conda-forge has pretty neat CI/CD that may take care...

> The `autogluon.common` conda-forge recipe fails to build because of some missing files referenced in the `setup.py`. All source files need to be included in the package tar file. I...

This package may be interesting to look at regarding the multioutput implementation: https://github.com/conda-forge/aiida-core-feedstock/blob/main/recipe/meta.yaml