(output: str)
| 121 | |
| 122 | |
| 123 | def _sanitize_version(output: str) -> str: |
| 124 | output = output.replace(f"{__version__} (editable)", "0.0.0").replace( |
| 125 | f"{__version__}", "0.0.0" |
| 126 | ) |
| 127 | output = re.sub( |
| 128 | r'"marimo_version": "[^"]*"', '"marimo_version": "0.0.0"', output |
| 129 | ) |
| 130 | return output |
| 131 | |
| 132 | |
| 133 | def delete_lines_with_files(output: str) -> str: |
searching dependent graphs…