From c78a8a2148a3200527466910bb0ec57e0ef413d7 Mon Sep 17 00:00:00 2001 From: Oliver Lemke Date: Wed, 2 Oct 2024 15:23:08 +0200 Subject: [PATCH 1/4] Raise macOS target --- pyarts/build.sh | 2 +- pyarts/conda_build_config.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyarts/build.sh b/pyarts/build.sh index bda8426..1cadfa5 100644 --- a/pyarts/build.sh +++ b/pyarts/build.sh @@ -2,7 +2,7 @@ mkdir -p build cd build if [[ $(uname) == "Darwin" ]]; then - export MACOSX_DEPLOYMENT_TARGET=13.3 + export MACOSX_DEPLOYMENT_TARGET=13.5 export CMAKE_ARGS="${CMAKE_ARGS} -DCMAKE_OSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET}" fi diff --git a/pyarts/conda_build_config.yaml b/pyarts/conda_build_config.yaml index 6f3f37d..f504d8f 100644 --- a/pyarts/conda_build_config.yaml +++ b/pyarts/conda_build_config.yaml @@ -7,6 +7,6 @@ c_compiler: # [win] target_platform: # [win] - win-64 # [win] MACOSX_DEPLOYMENT_TARGET: # [osx and x86_64] - - "13.3" # [osx and x86_64] + - "13.5" # [osx and x86_64] MACOSX_SDK_VERSION: # [osx and x86_64] - - "13.3" # [osx and x86_64] + - "13.5" # [osx and x86_64] From 4274b07666d1a48667a3d5b07485a0edeabdc15b Mon Sep 17 00:00:00 2001 From: Oliver Lemke Date: Wed, 2 Oct 2024 15:23:26 +0200 Subject: [PATCH 2/4] Fix arts version --- pyarts/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyarts/meta.yaml b/pyarts/meta.yaml index 7ed72dc..e8faaee 100644 --- a/pyarts/meta.yaml +++ b/pyarts/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pyarts" %} -{% set version = "3.0.0.dev0" %} +{% set version = "3.0.0.dev1" %} {% set dev_url = "https://github.com/atmtools/arts" %} package: From 8b84d5fc6341386f9199d8ccaa6f5968f881955b Mon Sep 17 00:00:00 2001 From: Oliver Lemke Date: Mon, 14 Oct 2024 08:16:56 +0200 Subject: [PATCH 3/4] Bump package version --- pyarts/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyarts/meta.yaml b/pyarts/meta.yaml index e8faaee..da5093e 100644 --- a/pyarts/meta.yaml +++ b/pyarts/meta.yaml @@ -13,7 +13,7 @@ source: git_depth: 1 build: - number: 1 + number: 2 requirements: build: From a27267e72e8f6a9650f346d7da4721527917408f Mon Sep 17 00:00:00 2001 From: Oliver Lemke Date: Mon, 14 Oct 2024 08:18:15 +0200 Subject: [PATCH 4/4] Add Python 3.13 --- .github/workflows/conda-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conda-build.yml b/.github/workflows/conda-build.yml index 7abd2ca..db4a462 100644 --- a/.github/workflows/conda-build.yml +++ b/.github/workflows/conda-build.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "macos-latest", "macos-13", "windows-latest"] - pyversion: ["3.10", "3.11", "3.12"] + pyversion: ["3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - uses: conda-incubator/setup-miniconda@v3