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
Package and Environment Details (include every applicable attribute)
Package Name/Version: cpython/3.10.0
Steps to reproduce (Include if Applicable)
If you try to build "cpython" with SQLite3 disabled you'll get a build error from Conan, as it tries to access the "self.options['sqlite3']" structure which only exists if SQLite3 is enabled.
It's a simple fix, PR incoming.
Logs (Include/Attach if Applicable)
Click to expand log
ERROR: cpython/3.10.0: Error in build() method, line 427
autotools = self._configure_autotools()
while calling '_configure_autotools', line 234
"--enable-loadable-sqlite-extensions={}".format(yes_no(not self.options["sqlite3"].omit_load_extension)),
ConanException: option 'omit_load_extension' doesn't exist
The text was updated successfully, but these errors were encountered:
Package and Environment Details (include every applicable attribute)
Steps to reproduce (Include if Applicable)
If you try to build "cpython" with SQLite3 disabled you'll get a build error from Conan, as it tries to access the "self.options['sqlite3']" structure which only exists if SQLite3 is enabled.
It's a simple fix, PR incoming.
Logs (Include/Attach if Applicable)
Click to expand log
The text was updated successfully, but these errors were encountered: