Fernando Pérez-García
Fernando Pérez-García
It seems that `pip` doesn't have `--dependency-groups` (yet). I would typically use [`uv`](https://docs.astral.sh/uv/) for this. Do you have any tips?
I guess a more general question is: how does one use the new feature?
Thank you, @agjohnson. This seems to have worked: ```yaml build: os: ubuntu-22.04 tools: python: "3.12" jobs: install: - pip install . - pip install dependency-groups - pip-install-dependency-groups doc ```
I solved this with `uv add "numpy>=1.24"`, which installed `numpy v1.26.4`.
Adding `cache=True` didn't make a difference to the import time, but removing the signatures did.
Hi, @blakedewey. Are you planning to keep working on this?
Waiting for - https://github.com/fepegar/torchio/pull/1211 to be merged.
I agree with @romainVala. > for RandomElasticDeformation I do not know if one can constrain it to 2D deformation only) Yes, you can e.g. set max. displacement to 0 along...
Can you please share the image and a minimal working example?
@romainVala @sravan953 I've implemented the feature as expected, but I'm not sure it's very useful. What do you think? Here's an example: ```python from itertools import product import numpy as...