(v: str)
| 69 | except ImportError: |
| 70 | # packaging not available; fall back to tuple comparison |
| 71 | def _parse_version(v: str) -> tuple[int, ...]: |
| 72 | return tuple(int(x) for x in v.split(".")) |
| 73 | |
| 74 | try: |
| 75 | if _parse_version(latest) > _parse_version(current): |
no outgoing calls
no test coverage detected