From 1f32c845306d3f65e72b120aa70084dafb377a2b Mon Sep 17 00:00:00 2001 From: Roland Kaminski Date: Fri, 13 Sep 2024 01:54:25 +0200 Subject: [PATCH] update for conda --- .github/conda/conda_build_config.yaml | 4 ++-- .github/deploy.yml | 6 +++--- .github/workflows/conda-dev.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/conda/conda_build_config.yaml b/.github/conda/conda_build_config.yaml index a70cd90..94e07f3 100644 --- a/.github/conda/conda_build_config.yaml +++ b/.github/conda/conda_build_config.yaml @@ -13,5 +13,5 @@ pin_run_as_build: # from https://github.com/phracker/MacOSX-SDKs CONDA_BUILD_SYSROOT: - - /opt/MacOSX10.9.sdk # [osx and not arm64] - - /opt/MacOSX11.3.sdk # [osx and arm64] + - /opt/MacOSX10.13.sdk # [osx and not arm64] + - /opt/MacOSX11.3.sdk # [osx and arm64] diff --git a/.github/deploy.yml b/.github/deploy.yml index a370f2e..fc5c738 100644 --- a/.github/deploy.yml +++ b/.github/deploy.yml @@ -15,7 +15,7 @@ conda: - 'macos-latest' - 'windows-2019' macosx-sdk: - - 'MacOSX10.9.sdk.tar.xz' + - 'MacOSX10.13.sdk.tar.xz' - 'MacOSX11.3.sdk.tar.xz' channels_release: - 'potassco' @@ -111,8 +111,8 @@ conda: # from https://github.com/phracker/MacOSX-SDKs CONDA_BUILD_SYSROOT: - - /opt/MacOSX10.9.sdk # [osx and not arm64] - - /opt/MacOSX11.3.sdk # [osx and arm64] + - /opt/MacOSX10.13.sdk # [osx and not arm64] + - /opt/MacOSX11.3.sdk # [osx and arm64] ppa: package_name: diff --git a/.github/workflows/conda-dev.yml b/.github/workflows/conda-dev.yml index 7aec0bb..1908ac5 100644 --- a/.github/workflows/conda-dev.yml +++ b/.github/workflows/conda-dev.yml @@ -44,8 +44,8 @@ jobs: if: ${{ matrix.os == 'macos-latest' }} shell: pwsh run: | - Invoke-WebRequest -Uri 'https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX10.9.sdk.tar.xz' -OutFile 'MacOSX10.9.sdk.tar.xz' - sudo tar xf MacOSX10.9.sdk.tar.xz -C /opt + Invoke-WebRequest -Uri 'https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX10.13.sdk.tar.xz' -OutFile 'MacOSX10.13.sdk.tar.xz' + sudo tar xf MacOSX10.13.sdk.tar.xz -C /opt Invoke-WebRequest -Uri 'https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX11.3.sdk.tar.xz' -OutFile 'MacOSX11.3.sdk.tar.xz' sudo tar xf MacOSX11.3.sdk.tar.xz -C /opt