You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pixi, using pixi --version.
Reproducible example
pixi.toml
[project]
name = "pypi-breaks-cli"
version = "0.1.0"
description = "pixi shell with pypi"
channels = ["conda-forge"]
platforms = ["linux-64"]
[tasks]
[dependencies]
python = "3.12.0.*"
[pypi-dependencies]
ipyflow = "*"
a@AK-Desktop-6600:~/code/pypi-breaks-pixi$ pixi install
WARN pixi::project: ALPHA feature enabled!
It looks like your project contains `[pypi-dependencies]`. This feature is currently still in an ALPHA state!
You may encounter bugs or weird behavior. Please report any and all issues you encounter on our github repository:
https://github.com/prefix-dev/pixi.
⠁ updating python packages
⠁ acquiring wheels [00:00:00] [━───────────────────] 5/106 argon2_cffi_bindings
⠁ unpacking wheels [00:00:00] [━───────────────────] 3/106 comm-0.2.0-py3-none-thread 'tokio-runtime-worker' panicked at 'not yet implemented: implement scripts', /home/runner/.cargo/git/checkouts/rattler_installs_packages-3677d742e8596976/2ee92fd/crates/ra
a@AK-Desktop-6600:~/code/pypi-breaks-pixi$ pixi shell
WARN pixi::project: ALPHA feature enabled!
It looks like your project contains `[pypi-dependencies]`. This feature is currently still in an ALPHA state!
You may encounter bugs or weird behavior. Please report any and all issues you encounter on our github repository:
https://github.com/prefix-dev/pixi.
⠉ updating python packages
⠉ acquiring wheels [00:00:00] [━━━╾────────────────] 16/94 anyio-4.1.0-py3-none
⠉ unpacking wheels [00:00:00] [━━──────────────────] 8/94 attrs-23.1.0-py3-nonthread 'tokio-runtime-worker' panicked at 'not yet implemented: implement scripts', /home/runner/.cargo/git/checkouts/rattler_installs_packages-3677d742e8596976/2ee92fd/crates/ra
a@AK-Desktop-6600:~/code/pypi-breaks-pixi$
a@AK-Desktop-6600:~/code/pypi-breaks-pixi$
a@AK-Desktop-6600:~/code/pypi-breaks-pixi$ pixi shell
WARN pixi::project: ALPHA feature enabled!
It looks like your project contains `[pypi-dependencies]`. This feature is currently still in an ALPHA state!
You may encounter bugs or weird behavior. Please report any and all issues you encounter on our github repository:
https://github.com/prefix-dev/pixi.
⠁ updating python packages
⠁ acquiring wheels [00:00:00] [────────────────────] 0/77 anyio-4.1.0-py3-none
⠁ unpacking wheels [00:00:00] [────────────────────] 0/77 thread 'tokio-runtime-worker' panicked at 'not yet implemented: implement scripts', /home/runner/.cargo/git/checkouts/rattler_installs_packages-3677d742e8596976/2ee92fd/crates/rattler_installs_packages/src/wheel.rs:663:17
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
a@AK-Desktop-6600:~/code/pypi-breaks-pixi$
a@AK-Desktop-6600:~/code/pypi-breaks-pixi$
a@AK-Desktop-6600:~/code/pypi-breaks-pixi$ pixi shell
WARN pixi::project: ALPHA feature enabled!
It looks like your project contains `[pypi-dependencies]`. This feature is currently still in an ALPHA state!
You may encounter bugs or weird behavior. Please report any and all issues you encounter on our github repository:
https://github.com/prefix-dev/pixi.
⠁ updating python packages
⠁ acquiring wheels [00:00:00] [────────────────────] 0/77 anyio-4.1.0-py3-none
⠁ unpacking wheels [00:00:00] [────────────────────] 0/77 thread 'tokio-runtime-worker' panicked at 'not yet implemented: implement scripts', /home/runner/.cargo/git/checkouts/rattler_installs_packages-3677d742e8596976/2ee92fd/crates/ra
Issue description
Wanted to experiment with pypi and the first thing I decided to try was ipyflow.
After pixi install, trying to use pixi shell commands gives me different warnings and errors.
Pixi wasn't happy with something about that package (see above) - this did not happen when I replaced ipyflow with ipykernel.
Alternative: install with pip but that takes forever and is probably not how you envision to run things :)
Hey @liquidcarbon ! Thanks for testing this out! The panic that you run into is because of a missing feature: support for "scripts".
Fortunately, I added support for this today in the downstream rip library: prefix-dev/rip#99. We'll make a new pixi release pretty soon that will include this feature.
Checks
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pixi, using
pixi --version
.Reproducible example
pixi.toml
Issue description
Wanted to experiment with pypi and the first thing I decided to try was ipyflow.
After
pixi install
, trying to use pixi shell commands gives me different warnings and errors.Pixi wasn't happy with something about that package (see above) - this did not happen when I replaced
ipyflow
withipykernel
.Alternative: install with pip but that takes forever and is probably not how you envision to run things :)
Expected behavior
things work :)
and maybe no need for the warning every time
The text was updated successfully, but these errors were encountered: