We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The Readme suggests that
semantic_version.Version('0.1.1').build
should be [], but in version 2.6.0 of semantic_version it is instead ().
[]
()
This makes little practical difference in most cases, except when you do something like
if v.build == []: ...
which will never work.
The text was updated successfully, but these errors were encountered:
Should be fixed when adding type hints, as per #138 — planned for version 3.0.
Sorry, something went wrong.
No branches or pull requests
The Readme suggests that
should be
[]
, but in version 2.6.0 of semantic_version it is instead()
.This makes little practical difference in most cases, except when you do something like
which will never work.
The text was updated successfully, but these errors were encountered: