Problem description
My project has an internal dependency that was built by my colleagues. Unfortunately, they are not specifying the dependency of their project correctly. Therefore, in uv, i have to do the following:
[tool.uv]
index-strategy = "unsafe-best-match"
no-build-isolation-package = ["pyyaml"]
override-dependencies = [
"click>=8.0.0",
"pyyaml>=5.5.1",
"ados>=2025.2.0",
"flask>=3.0.0",
"jinja2>=3.1.2",
"pandas>=2.0.0",
"matplotlib>=3.9.2",
"fsspec>=2023.5.0",
"pyarrow>17.0.0"
]
is it possible to override-dependencies in pixi?