Verify script is running from project root.
()
| 191 | |
| 192 | |
| 193 | def _verify_project_root() -> bool: |
| 194 | """Verify script is running from project root.""" |
| 195 | if not os.path.exists("pyproject.toml"): |
| 196 | _fail("pyproject.toml not found. Please run from project root.") |
| 197 | return True |
| 198 | |
| 199 | |
| 200 | def _get_version_from_file(file_path: str) -> str: |
no test coverage detected