-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Description
-
I am on the latest Poetry version.
-
I have searched the issues of this repo and believe that this is not a duplicate.
-
If an exception occurs when executing a command, I executed it again in debug mode (
-vvvoption). -
OS version and name: ubuntu 21.10
-
Poetry version: 1.1.13
-
Link of a Gist with the contents of your pyproject.toml file: https://gist.github.com/roipoussiere/94e123906e86448e755f04a1ad798d77
Issue
I have a wheel dependency on specific url for many platforms (Linuw/macOS/Windows) and many Python version (3.8, 3.9, 3.10).
Despite the fact I use Python 3.9, when I try poetry install, the python 3.8 version of the wheel is downloaded.
I also tried to:
- replace
python = "^3.8"bypython = "^3.9"(same thing); - replace
python = "~3.8", markers = "platform_system == 'Linux'",bymarkers = "python_version ~= '3.8' and platform_system == 'Linux'",(same thing).
Maybe related to #5378 or #5205, I don't think it's the same issue but I'm not sure.