(path: Path, content: str)
| 88 | |
| 89 | |
| 90 | def write_file(path: Path, content: str): |
| 91 | ensure_dir(path.parent) |
| 92 | with open(path, 'w', encoding='utf-8') as f: |
| 93 | f.write(content) |
| 94 | |
| 95 | |
| 96 | def parse_version_tuple(version: str): |
no test coverage detected
searching dependent graphs…