We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a41718d commit d8a802eCopy full SHA for d8a802e
setup.py
@@ -228,8 +228,8 @@ def run(self):
228
print("Raw wheel path", wheel_path)
229
230
os.rename(wheel_filename, wheel_path)
231
- except (urllib.error.HTTPError, urllib.error.URLError):
232
- print("Precompiled wheel not found. Building from source...")
+ except BaseException:
+ print(f"Precompiled wheel not found in url: {wheel_url}. Building from source...")
233
# If the wheel could not be downloaded, build from source
234
super().run()
235
0 commit comments