Skip to content

Commit

Permalink
Merge pull request #83 from hgiesel/fix/version-string
Browse files Browse the repository at this point in the history
fix: skip patch version
  • Loading branch information
MinmoTech authored Dec 15, 2023
2 parents 524af14 + 718f28b commit d2491a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/anki_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_state() -> VersionState:
except ValueError:
return VersionState.UNKNOWN

major, minor, patch = version_tuple
major, minor = version_tuple

if major <= 2:
# Old versioning scheme
Expand Down

0 comments on commit d2491a6

Please sign in to comment.