Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lib/py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,12 @@ def run_setup(with_binary):
print()
print('*' * 80)
print("An error occurred while trying to compile with the C extension enabled")

if os.environ.get('CIBUILDWHEEL') == '1':
print('Refusing to build a release wheel without the C extension')
print('*' * 80)
raise

print("Attempting to build without the extension now")
print('*' * 80)
print()
Expand Down
Loading