-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Improve debug logging for "Skipping wheel xxx-7.7.2-cp310-cp310-manylinux_2_35_x86_64.whl as this is not supported by the current environment" #9837
Comments
Well, it's something else: Package has Probably next step for me is to figure out what does 35 and 31 mean. |
Okay, it's actually
|
It seems that in my case solution was to move from
|
I'd keep this issue open but repurpose it to improve debug logging in |
I think some kind of fuzzy search or levenshtein distance would allow to filter supported tag and then do some additional parsing / explanation. |
code is here, if you have improvements to the logging please submit a merge request though I'd hint that if you are getting into "fuzzy search or levenshtein distance" then you are likely over-complicating it |
Will do thanks! |
Issue Kind
Change in current behaviour
Description
There is
partcad
package which depends oncadquery-ocp
. Wheels for which are provided by:And poetry ignores compatible wheel which has platform specified as
manylinux
Give the following configuration:
poetry install
will fail: output.txt.When it's running on:
According to the following:
cadquery_ocp-7.7.2-cp310-cp310-manylinux_2_35_x86_64.whl
should be selected but in reality it'snot supported by the current environment
Impact
It will allow to use Poetry with packages which are distributed for
manylinux
platform.Workarounds
Override
sys_platform
usingmarkers
:The text was updated successfully, but these errors were encountered: