Skip to content

Commit b924b14

Browse files
committed
fix conda macOS arm64 build issue
1 parent bd730c5 commit b924b14

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/publish-conda.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
- name: Build conda package
3535
shell: bash -l {0}
3636
run: |
37+
# Set CONDA_OVERRIDE_OSX to work around virtual package issues on macOS
38+
export CONDA_OVERRIDE_OSX="11.0"
3739
conda build conda.recipe --output-folder ./conda-bld
3840
3941
- name: Upload build artifacts

.github/workflows/publish-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ jobs:
8686
- name: Build conda package
8787
shell: bash -l {0}
8888
run: |
89+
# Set CONDA_OVERRIDE_OSX to work around virtual package issues on macOS
90+
export CONDA_OVERRIDE_OSX="11.0"
8991
conda build conda.recipe --output-folder ./conda-bld
9092
9193
- name: Upload Conda artifacts

0 commit comments

Comments
 (0)