-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow pyyaml version >4 in setup.py #6441
Comments
Hi @qboot The vulnerable code is not currently used in our code base (Compose only ever calls |
Any plans for this? |
I am having the same error for my docker image, did you find any solution yet? |
I'm also getting this error when using sagemaker, and it tries to run docker-compose: pkg_resources.ContextualVersionConflict: (PyYAML 5.1 (c:\users\tanner\anaconda3\lib\site-packages), Requirement.parse('PyYAML<4.3,>=3.10'), {'docker-compose'}) Edit: I found this thread #6619 |
I ran into the same issue trying to use |
hello!
I recently received this Github alert on a project because I'm using a
pyyaml
version<4.2b1
:After some research it seems that it's because
docker-compose
requirePyYAML >= 3.10, < 4
insetup.py
:compose/setup.py
Line 35 in 64633a8
Is there any contraindication to not authorize version
>4
? Thanks.The text was updated successfully, but these errors were encountered: