Skip to content

Commit 34c0e9a

Browse files
[macOS] fix 3.8.13 build (actions#172)
1 parent bf3c64f commit 34c0e9a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

builders/macos-python-builder.psm1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

builders/ubuntu-python-builder.psm1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)