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
Working with the pip 20.2b1 unstable resolver in an existing virtual environment, I am unable to install gevent's dev-requirements.txt on Python 2.7 with the alpha resolver. Normal resolver works fine. The error happens with and without the -U option to pip.
$ pip --unstable-feature=resolver install -r dev-requirements.txtRequirement already satisfied: restview in //lib/python2.7/site-packages (from -r dev-requirements.txt (line 4)) (2.9.2)Requirement already satisfied: pylint>=1.8.0 in //lib/python2.7/site-packages (from -r dev-requirements.txt (line 6)) (1.9.4)ERROR: Could not find a version that satisfies the requirement pylint>=1.8.0ERROR: Could not find a version that satisfies the requirement pylint>=2.5.0ERROR: No matching distribution found for pylint, pylint
The relevant lines of dev-requirements.txt look like this:
restview
pylint>=1.8.0 ; python_version < "3.4"
# pylint 2 needs astroid 2; unfortunately, it uses `typed_ast`
# which has a C extension that doesn't build on PyPy
pylint >= 2.5.0 ; python_version >= "3.4" and platform_python_implementation == "CPython"
astroid >= 2.4.0 ; python_version >= "3.4" and platform_python_implementation == "CPython"
I can provide the pipdeptree if desired, but it's quite large as this is an old virtual environment.
Working with the pip 20.2b1 unstable resolver in an existing virtual environment, I am unable to install gevent's dev-requirements.txt on Python 2.7 with the alpha resolver. Normal resolver works fine. The error happens with and without the
-U
option to pip.The relevant lines of
dev-requirements.txt
look like this:I can provide the
pipdeptree
if desired, but it's quite large as this is an old virtual environment.cc @ei8fdb @nlhkabu
The text was updated successfully, but these errors were encountered: