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
When I try to create a Python 3.7.0 environment (bandit==1.5.1) via pipenv install --python 3.7.0 ... I get an error An error occurred while installing bandit! Will try again. whose root cause seems to be PyYaml (Failed building wheel for PyYAML).
According to lower-constraints.txtbandit 1.5.1 depends on PyYaml==3.12. The pipenv output shows Collecting PyYAML>=3.12 (from bandit->-r /tmp/pipenv-y2xrl_5w-requirements/pipenv-ds4s1gv8-requirement.txt (line 1)). The PyYaml changelog states:
3.13 (2018-07-05)
Rebuild wheels using latest Cython for Python 3.7 support.
BTW: Creating a Python 3.6.5 environment (pipenv install --python 3.6.7 ...) works fine.
The text was updated successfully, but these errors were encountered:
Does
PyYaml 3.12
breakbandit
s Python 3.7 support under some circumstances?The Python 3.7
bandit 1.5.1
build log states installation ofPyYaml 3.13
.When I try to create a Python 3.7.0 environment (
bandit==1.5.1
) viapipenv install --python 3.7.0 ...
I get an errorAn error occurred while installing bandit! Will try again.
whose root cause seems to bePyYaml
(Failed building wheel for PyYAML
).According to
lower-constraints.txt
bandit 1.5.1
depends onPyYaml==3.12
. Thepipenv
output showsCollecting PyYAML>=3.12 (from bandit->-r /tmp/pipenv-y2xrl_5w-requirements/pipenv-ds4s1gv8-requirement.txt (line 1))
. The PyYaml changelog states:BTW: Creating a Python 3.6.5 environment (
pipenv install --python 3.6.7 ...
) works fine.The text was updated successfully, but these errors were encountered: