You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The build script added a pip install command. This breaks offline installation and also ignores any other setting passed to any parent pip command that was installing cairocffi in the first place.
The reason it breaks is because even though the exception is caught, an Exception during the installation there means that cffi is not installed and then the exec_module a few lines later fails, causing the entire build to fail.
cairocffi should really not call pip inside of it's build script.
The text was updated successfully, but these errors were encountered:
The build script added a
pip install
command. This breaks offline installation and also ignores any other setting passed to any parent pip command that was installingcairocffi
in the first place.cairocffi/utils/build.py
Line 22 in b48a5b3
The reason it breaks is because even though the exception is caught, an Exception during the installation there means that
cffi
is not installed and then theexec_module
a few lines later fails, causing the entire build to fail.cairocffi
should really not call pip inside of it's build script.The text was updated successfully, but these errors were encountered: