(version: tuple[int, int, int])
| 70 | |
| 71 | |
| 72 | def _next_patch(version: tuple[int, int, int]) -> tuple[int, int, int]: |
| 73 | return version[0], version[1], version[2] + 1 |
| 74 | |
| 75 | |
| 76 | def _latest_semver_tag() -> str | None: |
no outgoing calls
no test coverage detected