Skip to content

Commit

Permalink
update for conda
Browse files Browse the repository at this point in the history
  • Loading branch information
rkaminsk committed Sep 12, 2024
1 parent 016efa2 commit 1f32c84
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/conda/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
6 changes: 3 additions & 3 deletions .github/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/conda-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1f32c84

Please sign in to comment.