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

Improved version number parsing to allow version strings with charact… #42

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

algestam
Copy link

…ers such as 5.0.0-alpha1

return tuple([int(i) for i in version_string.split('.')])
"""Accept a typical version string (ex: 1.0.1 or 5.0.0-alpha1) and return a
tuple of ints, allowing for reasonable comparison."""
#return tuple([int(i) for i in re.findall(r'\d+', version_string)])
Copy link
Contributor

Choose a reason for hiding this comment

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

Did you mean to leave this in? Probably shouldn't commit commented-out code.

@algestam
Copy link
Author

Oops, missed to removed that line. Added another commit that removes the out-commented line.

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.

2 participants