Skip to content

Commit

Permalink
Fix calculating the next dev version for PEP 440
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernricks authored and y0urself committed Mar 14, 2023
1 parent 031b3d5 commit ca61f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pontos/version/schemes/_pep440.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def next_dev_version(cls, current_version: Version) -> Version:
return cls.version_from_string(
f"{current_version.major}."
f"{current_version.minor}."
f"{current_version.micro + 1 }.dev1"
f"{current_version.patch + 1}.dev1"
)

@classmethod
Expand Down

0 comments on commit ca61f50

Please sign in to comment.