diff --git a/builders/macos-python-builder.psm1 b/builders/macos-python-builder.psm1 index e434dc4..6ce5b28 100644 --- a/builders/macos-python-builder.psm1 +++ b/builders/macos-python-builder.psm1 @@ -46,7 +46,7 @@ class macOSPythonBuilder : NixPythonBuilder { ### will never be used itself by a Github Actions runner but using a universal2 Python is the only way to build ### universal2 C extensions and wheels. This is supported by Python >= 3.10 and was backported to Python >= ### 3.9.1 and >= 3.8.10. - if ($this.Version -ge "3.8.10" -and $this.Version -ne "3.9.0" ) { + if ($this.Version -ge "3.8.10" -and $this.Version -ne "3.8.13" -and $this.Version -ne "3.9.0" ) { $configureString += " --enable-universalsdk --with-universal-archs=universal2" } @@ -70,6 +70,9 @@ class macOSPythonBuilder : NixPythonBuilder { $env:CPPFLAGS += "-I$(brew --prefix sqlite3)/include" } + Write-Host "The passed configure options are: " + Write-Host $configureString + Execute-Command -Command $configureString } } diff --git a/builders/ubuntu-python-builder.psm1 b/builders/ubuntu-python-builder.psm1 index fe1b42e..555d7d8 100644 --- a/builders/ubuntu-python-builder.psm1 +++ b/builders/ubuntu-python-builder.psm1 @@ -48,6 +48,9 @@ class UbuntuPythonBuilder : NixPythonBuilder { $configureString += " --enable-loadable-sqlite-extensions" } + Write-Host "The passed configure options are: " + Write-Host $configureString + Execute-Command -Command $configureString }