Casper da Costa-Luis
Casper da Costa-Luis
Looks like 2 separate issues to me. ## custom completion Assuming you have this: ```bash cli.py list-valid-ints # prints a finite (!) list of options cli.py --int # should tab-complete...
Ah yes I noticed recently (https://github.com/AMYPAD/CuVec/pull/30), thanks :)
running into an issue trying to `pip install dipy` (https://github.com/AMYPAD/AmyPET/issues/33). I presume `dipy` is missing a `pyproject.toml` with at least: ```toml [build-system] requires = ["setuptools>=42", "packaging", "numpy"] # optional, as...
probably can be closed as a duplicate of #1621 & #1584
Ah just saw this. Yes, should update the readme...
Looks like some ongoing chaos across GitHub for all `*.rst` rendering: https://github.com/orgs/community/discussions/113792
argh sorry for the epic delay... will release in [`tqdm>=4.66.4`](https://github.com/tqdm/tqdm/releases/tag/v4.66.4) shortly
should do this after #1439 :)
what's wrong with this instead: ```python from tqdm import tqdm with tqdm(["Downloading", "Loading", "Transforming", "Merging", "Filtering"], desc="Preparing") as steps: for step in steps: steps.set_postfix(stage=step) if step == "Downloading": some_download_func() elif...
I guess the problem is [this](https://github.com/tmux-plugins/tmux-cpu/blob/9eb3dba66672c5b43065e144cc3a1031f77ad67e/scripts/helpers.sh#L110-L150) is not atomic