File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class macOSPythonBuilder : NixPythonBuilder {
46
46
# ## will never be used itself by a Github Actions runner but using a universal2 Python is the only way to build
47
47
# ## universal2 C extensions and wheels. This is supported by Python >= 3.10 and was backported to Python >=
48
48
# ## 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" ) {
50
50
$configureString += " --enable-universalsdk --with-universal-archs=universal2"
51
51
}
52
52
@@ -70,6 +70,9 @@ class macOSPythonBuilder : NixPythonBuilder {
70
70
$env: CPPFLAGS += " -I$ ( brew -- prefix sqlite3) /include"
71
71
}
72
72
73
+ Write-Host " The passed configure options are: "
74
+ Write-Host $configureString
75
+
73
76
Execute- Command - Command $configureString
74
77
}
75
78
}
Original file line number Diff line number Diff line change @@ -48,6 +48,9 @@ class UbuntuPythonBuilder : NixPythonBuilder {
48
48
$configureString += " --enable-loadable-sqlite-extensions"
49
49
}
50
50
51
+ Write-Host " The passed configure options are: "
52
+ Write-Host $configureString
53
+
51
54
Execute- Command - Command $configureString
52
55
}
53
56
You can’t perform that action at this time.
0 commit comments