File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class macOSPythonBuilder : NixPythonBuilder {
4646 # ## will never be used itself by a Github Actions runner but using a universal2 Python is the only way to build
4747 # ## universal2 C extensions and wheels. This is supported by Python >= 3.10 and was backported to Python >=
4848 # ## 3.9.1 and >= 3.8.10.
49- if ($this.Version -ge " 3.8.10" -and $this.Version -ne " 3.9.0" ) {
49+ if ($this.Version -ge " 3.8.10" -and $this.Version -ne " 3.8.13 " -and $this .Version -ne " 3. 9.0" ) {
5050 $configureString += " --enable-universalsdk --with-universal-archs=universal2"
5151 }
5252
@@ -70,6 +70,9 @@ class macOSPythonBuilder : NixPythonBuilder {
7070 $env: CPPFLAGS += " -I$ ( brew -- prefix sqlite3) /include"
7171 }
7272
73+ Write-Host " The passed configure options are: "
74+ Write-Host $configureString
75+
7376 Execute- Command - Command $configureString
7477 }
7578}
Original file line number Diff line number Diff line change @@ -48,6 +48,9 @@ class UbuntuPythonBuilder : NixPythonBuilder {
4848 $configureString += " --enable-loadable-sqlite-extensions"
4949 }
5050
51+ Write-Host " The passed configure options are: "
52+ Write-Host $configureString
53+
5154 Execute- Command - Command $configureString
5255 }
5356
You can’t perform that action at this time.
0 commit comments