-
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
Poetry doesn’t find the right thing to download #3852
Comments
poetry run python -c 'import packaging.tags; print(list(str(t) for t in packaging.tags.sys_tags()))' Returns: https://gist.github.com/ThatXliner/5cc7a5ecdb86f0308cd9c7ae1267707e |
This looks like it is caused by pypa/packaging#318. Effectively we use Master should be using a fixed packaging version. You can test using poetry from master, as follows. pipx install --force --suffix=@master 'poetry @ git+https://github.com/python-poetry/poetry.git@master'
poetry@master new foobar
poetry@master add MarkupSafe |
|
Hm maybe! I will try again probably this weekend |
Cannot reproduce anymore (even with deleted cache) (version 1.1.10) |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
exception
occurs when executing a command, I executed it again in debug mode (-vvv
option).(See below)
Issue
Alrighty. I'm on Big Sur, and I want to install Jinja2. Jinja2 has no wheel for Big Sur. Yet Poetry still chooses the latest macOS wheel (Catalina). Then it fails because it is not the right one. Poetry should be able to detect that it is not the correct wheel and/or fallback to installing via sdist.
This hack (a little modified) worked!
Before the hack, it looked a little like this:
The text was updated successfully, but these errors were encountered: