-
I have both pixi and uv installed on my system (macOS 15.5 ARM, In an empty directory, I tried the following: mkdir uv-test && cd uv-test
uv -V # uv 0.8.4
uv init .
uv add odrpack --no-build # installs without problems
uv run python -V # Python 3.13.5 (Homebrew-managed Python)
cd ..
mkdir pixi-test && cd pixi-test
pixi -V # pixi 0.50.2
pixi init .
pixi add python
pixi add --pypi odrpack # fails
pixi run python -V # Python 3.13.5 (installed in the environment) While uv correctly installs the package with no problems, pixi for some reason does not appear to use the wheels on PyPI (while they seem to be there: I expected Is this a bug, or is there something obvious that I'm missing? Side notes:
Thank you for your time and your assistance. P.S.: If this turns out to be a bug, should I post it in #771 or should I open a new issue? (edit: typo) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
odrpack publishes wheels for |
Beta Was this translation helpful? Give feedback.
odrpack publishes wheels for
macos
13.0 and14.0
. I suspect that you should change the system-requirements table to point to e.g.macos = "14.0"
.