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
These lines cause dependency conflict on Python 3.7 when installing this requirements file with pip.
ipython==7.16.1; python_version < "3.7" or python_version >= "4.0" or python_version >= "3.6" and implementation_name == "cpython"
ipython==7.20.0; python_version >= "3.7" and python_version < "4.0"
It tries to install both 7.16.1 (because python_version >= "3.6" and implementation_name == "cpython" matches) and 7.20.0 (because python_version >= "3.7" and python_version < "4.0" matches).
The text was updated successfully, but these errors were encountered:
-vvv
option).Issue
With the linked
pyproject.toml
file, runningpoetry export -f requirements.txt --output requirements.txt --without-hashes
generates this requirements.txt file.
These lines cause dependency conflict on Python 3.7 when installing this requirements file with
pip
.It tries to install both 7.16.1 (because
python_version >= "3.6" and implementation_name == "cpython"
matches) and 7.20.0 (becausepython_version >= "3.7" and python_version < "4.0"
matches).The text was updated successfully, but these errors were encountered: