We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74d2476 commit 38c6a28Copy full SHA for 38c6a28
2 files changed
.github/.platforms/generate_platforms.py
@@ -79,7 +79,12 @@ def wrapper() -> T:
79
file=sys.stderr,
80
)
81
time.sleep(delay)
82
- raise last_error # type: ignore[misc]
+ if last_error is not None:
83
+ raise last_error
84
+ raise RuntimeError(
85
+ f"Retry failed without capturing a CalledProcessError. "
86
+ f"max_attempts={max_attempts!r}"
87
+ )
88
89
return wrapper
90
.github/.platforms/windows-x86_64-py310.json
@@ -16,7 +16,6 @@
16
"cp310-cp310-win_amd64",
17
"cp310-abi3-win_amd64",
18
"cp310-none-win_amd64",
19
- "cp310-abi3-win_amd64",
20
"cp39-abi3-win_amd64",
21
"cp38-abi3-win_amd64",
22
"cp37-abi3-win_amd64",
0 commit comments