Skip to content

Commit

Permalink
Merge pull request #5829 from h-vetinari/10.13
Browse files Browse the repository at this point in the history
increase minimum macOS deployment target to 10.13
  • Loading branch information
h-vetinari authored May 6, 2024
2 parents 0ff7c25 + b723957 commit ef4ca4c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ c_stdlib_version: # [unix]
- 2.17 # [linux64 and os.environ.get("DEFAULT_LINUX_VERSION", "cos6") == "cos7"]
- 2.17 # [linux and not x86_64]
- 2.17 # [linux and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 10.9 # [osx and x86_64]
- 10.13 # [osx and x86_64]
- 11.0 # [osx and arm64]
cxx_compiler:
- gxx # [linux]
Expand Down Expand Up @@ -98,12 +98,16 @@ target_gobin:
rust_compiler:
- rust

# the numbers here are the Darwin Kernel version for macOS 10.9 & 11.0;
# this is used to form our target triple on osx, and nothing else. After
# we bumped the minimum macOS version to 10.13, this was left unchanged,
# since it is not essential, and long-term we'd like to remove the version.
macos_machine: # [osx]
- x86_64-apple-darwin13.4.0 # [osx and x86_64]
- arm64-apple-darwin20.0.0 # [osx and arm64]
MACOSX_DEPLOYMENT_TARGET: # [osx]
- 11.0 # [osx and arm64]
- 10.9 # [osx and x86_64]
- 10.13 # [osx and x86_64]
VERBOSE_AT:
- V=1
VERBOSE_CM:
Expand Down

0 comments on commit ef4ca4c

Please sign in to comment.