Get the 1 version above the max required bun version. Returns: max bun version plus one.
()
| 29 | |
| 30 | |
| 31 | def get_above_max_version(): |
| 32 | """Get the 1 version above the max required bun version. |
| 33 | |
| 34 | Returns: |
| 35 | max bun version plus one. |
| 36 | |
| 37 | """ |
| 38 | semantic_version_list = constants.Bun.VERSION.split(".") |
| 39 | semantic_version_list[-1] = str(int(semantic_version_list[-1]) + 1) # type: ignore |
| 40 | return ".".join(semantic_version_list) |
| 41 | |
| 42 | |
| 43 | V055 = version.parse("0.5.5") |
no test coverage detected