Skip to content

AppVeyor: don't download huge pillow-depends.zip #7407

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Sep 24, 2023
Prev Previous commit
Next Next commit
Re-instate for/else to avoid a raise after an error and a subsequent …
…success
  • Loading branch information
hugovk committed Sep 20, 2023
commit 1ba79d2bee268b1ad21881007fb703a230397153
3 changes: 1 addition & 2 deletions winbuild/build_prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,7 @@ def download_dep(url: str, file: str) -> None:
break
except urllib.error.URLError as e:
ex = e

if ex:
else:
raise RuntimeError(ex)


Expand Down