We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86526a3 commit 4609c11Copy full SHA for 4609c11
versioning/helper/setup_utils.py
@@ -179,7 +179,9 @@ def get_dynamic_dependencies(
179
f"Please check the file for syntax errors."
180
) from e
181
# Re-raise unexpected errors
182
- raise RuntimeError(f"Unexpected error reading {pyproject_path}: {type(e).__name__}: {e}") from e
+ raise RuntimeError(
183
+ f"Unexpected error reading {pyproject_path}: {type(e).__name__}: {e}"
184
+ ) from e
185
186
# Validate pyproject.toml structure
187
if "project" not in pyproject:
0 commit comments