-
-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing maturin as a dependency of pyxel fails #1211
Comments
What's your operating system and what's your rustc version? For macOS, Linux and Windows pyxel should have precompiled wheels you don't need to compile from source, so does maturin. That said, cargo by default resolve dependencies by semver that's why it tries to use anyhow 1.0.65. |
Don't know if you still want to know:
So should I just try again and |
It kinda odd that your |
Btw. I have
Maybe it has to do with
|
The output looks fine, maybe you can debug it with |
|
Looks like somehow you have disabled pip from installing wheels. |
My pip does not output this deprecation warning, so it seems that you have enabled |
That line stood out to me too … I then checked
I had some problem a while ago that was fixed by using no-binary but since I don't remember what it was I am going to disable it. |
Now it works. Thank you so much for sticking with me and figuring out these config error :) Have a nice day! |
Bug Description
Seems like there is only
anyhow 1.0.62
available … but pip wants to installanyhow = "=1.0.65"
, which is weird because maturin's current Cargo.toml lists1.0.63
.Pyxel's toml file:
Sorry if this is a problem in pyxel's toml file and not related to maturin.
If this is a problem on my end … if rust is installed, shouldn't there be a step that pulls in the updated list of dependencies?
Your Python version (
python -V
)Python 3.10.7
Your pip version (
pip -V
)pip 22.3
What bindings you're using
No response
Does
cargo build
work?If on windows, have you checked that you aren't accidentally using unix path (those with the forward slash
/
)?Steps to Reproduce
pip install pyxel
The text was updated successfully, but these errors were encountered: