Nemanja Radojković
Nemanja Radojković
I have a similar problem when trying to use `uv pip compile`:  In `pyproject.toml` I have the `+cpu` dependencies specifed, and they are available on our internal Artifactory (installation...
So. - `uv pip install torch==2.1.1+cpu` => works 🟢 - `uv pip install -e .` (where the local project has `torch==2.1.1+cpu` as a dependency) => fails. 🔴 - `uv pip...
Ok, found a workaround(?), using the `--override` option: I created the `overrides.txt` file with the following content ``` # overrides.txt torch==2.1.1+cpu torchvision==0.16.1+cpu ``` Then called: `uv pip compile pyproject.toml -o...
@Kludex , have you tried actually running the app and making a request to the endpoint of the subapp? I have recently also struggled with a very similar setup, where...
It would be really nice to have this implemented...