Limited architectures wheels #4656
Unanswered
benoit9126
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have a question related to repositories with partial architectures support. Here is an example.
The repository
ortools
published versions of its package with a partial architecture support: the version 9.1.9552 ofortools
only containsaarch64
wheels (https://pypi.org/project/ortools/9.1.9552/#files). As a consequence, when I specify in mypyproject.toml
ortools = "^9.1"
, poetry tries to install (on myx68_64
computer) the version 9.1.9552 and fails because there are no wheels forx86_64
... I tried, with a limited success, to ask the developers ofortools
to publish a version with all the architectures google/or-tools#2848What are the best practices in this case? I can obviously define a more limited set of versions of
ortools
in mypyproject.toml
(ortools="9.1.9490"
). Is it possible forpoetry
to filter the versions which can be installed, looking at available wheels?Beta Was this translation helpful? Give feedback.
All reactions