From dd829ea96a916c468c159d3583461940fa937d25 Mon Sep 17 00:00:00 2001 From: Roland Kaminski Date: Fri, 13 Sep 2024 02:18:55 +0200 Subject: [PATCH] another test --- .github/conda/conda_build_config.yaml | 4 ++++ .github/deploy.yml | 3 +++ .github/workflows/cibuildwheel.yml | 4 ++-- .github/workflows/conda-dev.yml | 2 -- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/conda/conda_build_config.yaml b/.github/conda/conda_build_config.yaml index 94e07f3..7c7a115 100644 --- a/.github/conda/conda_build_config.yaml +++ b/.github/conda/conda_build_config.yaml @@ -11,6 +11,10 @@ clingo: pin_run_as_build: clingo: x.x +c_stdlib_version: # [osx] + - 10.13 # [osx and not arm64] + - 11.3.sdk # [osx and arm64] + # from https://github.com/phracker/MacOSX-SDKs CONDA_BUILD_SYSROOT: - /opt/MacOSX10.13.sdk # [osx and not arm64] diff --git a/.github/deploy.yml b/.github/deploy.yml index fc5c738..046ed5d 100644 --- a/.github/deploy.yml +++ b/.github/deploy.yml @@ -6,6 +6,9 @@ cibw: m = match(r'#define CLINGOLPX_VERSION "([0-9]+\.[0-9]+\.[0-9]+)"', line) if m is not None: version = m.group(1) + macosx_deployment_target: + x86_64: 10.15 + arm64: 10.15 conda: package_name: diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index 825b18a..d4a3aad 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -82,11 +82,11 @@ jobs: - os: macos-13 name: "*-macos_x86_64" env: - MACOSX_DEPLOYMENT_TARGET: "10.13" + MACOSX_DEPLOYMENT_TARGET: "10.15" - os: macos-14 name: "*-macos_arm64" env: - MACOSX_DEPLOYMENT_TARGET: "10.14" + MACOSX_DEPLOYMENT_TARGET: "10.15" steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/conda-dev.yml b/.github/workflows/conda-dev.yml index 1908ac5..9b4d140 100644 --- a/.github/workflows/conda-dev.yml +++ b/.github/workflows/conda-dev.yml @@ -16,9 +16,7 @@ jobs: fail-fast: false matrix: os: - - ubuntu-latest - macos-latest - - windows-2019 python-version: ['3.8'] steps: