File tree 2 files changed +9
-8
lines changed 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -50,9 +50,10 @@ class macOSPythonBuilder : NixPythonBuilder {
50
50
# ## will never be used itself by a Github Actions runner but using a universal2 Python is the only way to build
51
51
# ## universal2 C extensions and wheels. This is supported by Python >= 3.10 and was backported to Python >=
52
52
# ## 3.9.1 and >= 3.8.10.
53
- if ($this.Version -ge " 3.8.10" -and $this.Version -ne " 3.8.13" -and $this.Version -ne " 3.9.0" ) {
54
- $configureString += " --enable-universalsdk --with-universal-archs=universal2"
55
- }
53
+ # ## Disabled, discussion: https://github.com/actions/python-versions/pull/114
54
+ # if ($this.Version -ge "3.8.10" -and $this.Version -ne "3.8.13" -and $this.Version -ne "3.9.0" ) {
55
+ # $configureString += " --enable-universalsdk --with-universal-archs=universal2"
56
+ # }
56
57
57
58
# ## OS X 10.11, Apple no longer provides header files for the deprecated system version of OpenSSL.
58
59
# ## Solution is to install these libraries from a third-party package manager,
Original file line number Diff line number Diff line change @@ -50,11 +50,11 @@ Describe "Tests" {
50
50
}
51
51
52
52
# linux has no display name and no $DISPLAY environment variable - skip tk test
53
- if (-not (($Platform -match " ubuntu" ) -or ($Platform -match " linux" ))) {
54
- It " Check if tcl/tk has the same headed and library versions" {
55
- " python ./sources/tcltk.py" | Should - ReturnZeroExitCode
56
- }
57
- }
53
+ # if (-not (($Platform -match "ubuntu") -or ($Platform -match "linux"))) {
54
+ # It "Check if tcl/tk has the same headed and library versions" {
55
+ # "python ./sources/tcltk.py" | Should -ReturnZeroExitCode
56
+ # }
57
+ # }
58
58
59
59
if (($Version -ge " 3.2.0" ) -and -not ([semver ]" $ ( $Version.Major ) .$ ( $Version.Minor ) " -eq [semver ]" 3.11" -and $Version.PreReleaseLabel )) {
60
60
It " Check if sqlite3 module is installed" {
You can’t perform that action at this time.
0 commit comments