Why did pip upgrade from version 10 to version 18?

PythonPip

Python Problem Overview


while running a pip install script I get the following warning:

 You are using pip version 10.0.1, however version 18.0 is available

This is very strange. Did the pip project just upgrade from version 10 to version 18? Why?

Python Solutions


Solution 1 - Python

First point in the release notes:

> - Switch to a Calendar based versioning scheme. > > https://pip.pypa.io/en/stable/news/

More about calendar versioning: https://calver.org/

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmircealunguView Question on Stackoverflow
Solution 1 - PythondecezeView Answer on Stackoverflow