You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could not parse version constraint: >=3.5.*
at ~/Library/Application Support/pypoetry/venv/lib/python3.7/site-packages/poetry/core/semver/helpers.py:140 in parse_single_constraint
136│ try:
137│ version = Version.parse(version)
138│ except ValueError:
139│ raise ValueError(
→ 140│ "Could not parse version constraint: {}".format(constraint)
141│ )
142│
143│ if op == "<":
144│ return VersionRange(max=version)
and I think this is because of a line with python_requires=">=3.5.*, <4", in apache-libcloud's setup.py file.
I could try to git them to rephrase their dependencies, but I'd like to be able to install already-existing versions of packages.
-vvv
option).Issue
Trying to lock the following
pyproject.toml
fails:The error message ultimately ends in
and I think this is because of a line with
python_requires=">=3.5.*, <4",
in apache-libcloud's setup.py file.I could try to git them to rephrase their dependencies, but I'd like to be able to install already-existing versions of packages.
This seems related to #3619.
The text was updated successfully, but these errors were encountered: