All Questions
Tagged with versioning python
5 questions
-2
votes
4
answers
2k
views
Compare version numbers
I need to compare versions of a software. The requirement is that I need to know if a given version is older (smaller), same or newer (higher) than another one.
The version format is XX.X.XX where:
...
2
votes
1
answer
2k
views
Using semantic version with trunk based development for Python package
I am trying to understand trunk based development with semantic versioning for a Python project. Has anyone had any experience of adopting a trunk based development with semantic versioning for ...
-4
votes
1
answer
981
views
What's the `__version_info__ ` function in a PyPi package?
What's the __version_info__ function?
I am reading a open source library uritemplate, I found:
__version__ = '3.0.0'
__version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit())
...
3
votes
2
answers
7k
views
Why is Python 3.4 still developed after the release of 3.5? [closed]
The lastest version of Python is 3.5.1. However, the latest release is 3.4.4. Why is 3.4.x still developed? Are there breaking changes in 3.5 with respect to 3.4?
https://www.python.org/downloads/
3
votes
1
answer
1k
views
Is Python Cookbook for python 2.4 applicable to python 2.7.5?
My college has a course on Introduction to programming using python and we are using Python 2.7.5.
I would like to know if it will be helpful to read Python Cookbook which is for python 2.4?
There ...