Skip to content
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

Upgrading pyyaml<=5.1 to pyyaml<=5.1.1 #4355

Closed
wants to merge 1 commit into from
Closed

Conversation

justnance
Copy link

@justnance justnance commented Jul 28, 2019

Issue #, if available:
fixes: #4350 #4042 #4243

Description of changes:
PyYAML 5.1.1 released on June 6, 2019 is not compatible with the latest version of the CLI.

If you try to install PyYAML and the CLI is already installed, the following error returns: "PyYAML 5.1.1 which is incompatible." This is due to PIP trying to install the latest PyYAML version (5.1.1). Command used to install PyYAML is:

pip3 install --force-reinstall --no-cache-dir pyyaml

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

@@ -9,6 +9,6 @@ requires-dist =
docutils>=0.10,<0.15
rsa>=3.1.2,<=3.5.0
PyYAML>=3.10,<=3.13; python_version=="2.6"
PyYAML>=3.10,<=5.1;python_version!="2.6"
PyYAML>=3.10,<=5.1.1;python_version!="2.6"
Copy link

@Surgo Surgo Aug 5, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I use 5.1.2 now.
I think <5.2 is better. Maybe bump major version when including backward incompatible changes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

pyyaml<=5.1 runs into issues with serial install on Python 3.6
3 participants