From fb105f2cd6cb010dfcf5a980838e5afe9b7f5d41 Mon Sep 17 00:00:00 2001 From: regro-cf-autotick-bot <36490558+regro-cf-autotick-bot@users.noreply.github.com> Date: Sat, 9 Nov 2024 06:05:38 +0000 Subject: [PATCH 01/11] updated v2024.11.1 --- recipe/meta.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 93b8fa2..c4c3a4d 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "conda-store" %} -{% set version = "2024.10.1" %} +{% set version = "2024.11.1" %} package: name: {{ name|lower }}-split @@ -7,10 +7,10 @@ package: source: - url: https://pypi.io/packages/source/c/conda-store/conda_store-{{ version }}.tar.gz - sha256: 2b2c5039776d299f14af48739701def9bfc3764f67f1b7335ae9f9d88cc52fc0 + sha256: 82205d1056d16b3ff770c4debc155c29d384a55a087f26328e329812d7e6ead9 folder: conda-store - url: https://pypi.io/packages/source/c/conda-store-server/conda_store_server-{{ version }}.tar.gz - sha256: 61451e3893e8a109d7015dbedc4748691f59c11357f92ab2face5c0e66eef760 + sha256: 753b18b99e426c5e2e551a5a0b8ae560fbbc1bd60ee28d59de08e5aea2c6c624 folder: conda-store-server build: @@ -23,7 +23,7 @@ outputs: noarch: python script: python -m pip install ./conda-store -vv --no-deps --no-build-isolation --no-index entry_points: - - conda-store = conda_store.__main__:main + - conda-store = conda_store.__main__:main requirements: host: - python >=3.8 @@ -55,8 +55,8 @@ outputs: noarch: python script: python -m pip install ./conda-store-server -vv --no-deps --no-build-isolation --no-index entry_points: - - conda-store-server = conda_store_server._internal.server.__main__:main - - conda-store-worker = conda_store_server._internal.worker.__main__:main + - conda-store-server = conda_store_server._internal.server.__main__:main + - conda-store-worker = conda_store_server._internal.worker.__main__:main requirements: host: - python >=3.8 From ec5b0537756b0c9bf6214245a9812a7b9c5e3562 Mon Sep 17 00:00:00 2001 From: regro-cf-autotick-bot <36490558+regro-cf-autotick-bot@users.noreply.github.com> Date: Sat, 9 Nov 2024 06:06:22 +0000 Subject: [PATCH 02/11] MNT: Re-rendered with conda-build 24.9.0, conda-smithy 3.44.2, and conda-forge-pinning 2024.11.09.05.29.22 --- .ci_support/linux_64_.yaml | 2 +- .scripts/run_osx_build.sh | 2 +- .scripts/run_win_build.bat | 6 ++---- azure-pipelines.yml | 2 +- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.ci_support/linux_64_.yaml b/.ci_support/linux_64_.yaml index 82f2873..7f68ce7 100644 --- a/.ci_support/linux_64_.yaml +++ b/.ci_support/linux_64_.yaml @@ -1,5 +1,5 @@ cdt_name: -- cos7 +- conda channel_sources: - conda-forge channel_targets: diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh index cc73c21..63147cc 100755 --- a/.scripts/run_osx_build.sh +++ b/.scripts/run_osx_build.sh @@ -33,7 +33,7 @@ rm -rf "${MAMBA_ROOT_PREFIX}" "${micromamba_exe}" || true ( endgroup "Provisioning base env with micromamba" ) 2> /dev/null ( startgroup "Configuring conda" ) 2> /dev/null - +echo "Activating environment" source "${MINIFORGE_HOME}/etc/profile.d/conda.sh" conda activate base export CONDA_SOLVER="libmamba" diff --git a/.scripts/run_win_build.bat b/.scripts/run_win_build.bat index 752eec6..e0a7606 100755 --- a/.scripts/run_win_build.bat +++ b/.scripts/run_win_build.bat @@ -12,6 +12,7 @@ setlocal enableextensions enabledelayedexpansion +FOR %%A IN ("%~dp0.") DO SET "REPO_ROOT=%%~dpA" if "%MINIFORGE_HOME%"=="" set "MINIFORGE_HOME=%USERPROFILE%\Miniforge3" :: Remove trailing backslash, if present if "%MINIFORGE_HOME:~-1%"=="\" set "MINIFORGE_HOME=%MINIFORGE_HOME:~0,-1%" @@ -32,17 +33,14 @@ call "%MICROMAMBA_EXE%" create --yes --root-prefix "%MAMBA_ROOT_PREFIX%" --prefi --channel conda-forge ^ pip python=3.12 conda-build conda-forge-ci-setup=4 "conda-build>=24.1" if !errorlevel! neq 0 exit /b !errorlevel! -echo Moving pkgs cache from %MAMBA_ROOT_PREFIX% to %MINIFORGE_HOME% -move /Y "%MAMBA_ROOT_PREFIX%\pkgs" "%MINIFORGE_HOME%" -if !errorlevel! neq 0 exit /b !errorlevel! echo Removing %MAMBA_ROOT_PREFIX% del /S /Q "%MAMBA_ROOT_PREFIX%" del /S /Q "%MICROMAMBA_TMPDIR%" -call :end_group call :start_group "Configuring conda" :: Activate the base conda environment +echo Activating environment call "%MINIFORGE_HOME%\Scripts\activate.bat" :: Configure the solver set "CONDA_SOLVER=libmamba" diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 32da3d0..eff4ad6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,7 +19,7 @@ stages: echo "##vso[task.setvariable variable=log]$git_log" displayName: Obtain commit message - bash: echo "##vso[task.setvariable variable=RET]false" - condition: or(contains(variables.log, '[skip azp]'), contains(variables.log, '[azp skip]'), contains(variables.log, '[skip ci]'), contains(variables.log, '[ci skip]')) + condition: and(eq(variables['Build.Reason'], 'PullRequest'), or(contains(variables.log, '[skip azp]'), contains(variables.log, '[azp skip]'), contains(variables.log, '[skip ci]'), contains(variables.log, '[ci skip]'))) displayName: Skip build? - bash: echo "##vso[task.setvariable variable=start_main;isOutput=true]$RET" name: result From 753eea647146128f37562456e340d68b382c7494 Mon Sep 17 00:00:00 2001 From: pdmurray Date: Sun, 10 Nov 2024 11:48:34 -0800 Subject: [PATCH 03/11] Pin pyyaml dependency until it is compatible with cython>3.0 --- recipe/meta.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index c4c3a4d..704920b 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -6,10 +6,10 @@ package: version: {{ version }} source: - - url: https://pypi.io/packages/source/c/conda-store/conda_store-{{ version }}.tar.gz + - url: https://pypi.org/packages/source/c/conda-store/conda_store-{{ version }}.tar.gz sha256: 82205d1056d16b3ff770c4debc155c29d384a55a087f26328e329812d7e6ead9 folder: conda-store - - url: https://pypi.io/packages/source/c/conda-store-server/conda_store_server-{{ version }}.tar.gz + - url: https://pypi.org/packages/source/c/conda-store-server/conda_store_server-{{ version }}.tar.gz sha256: 753b18b99e426c5e2e551a5a0b8ae560fbbc1bd60ee28d59de08e5aea2c6c624 folder: conda-store-server @@ -84,7 +84,7 @@ outputs: - python >=3.8 - python-docker - python-multipart - - pyyaml + - pyyaml==5.3.1 - redis-py - requests - sqlalchemy <2.0a0 From ffb82772156ed4689cd77b2976ee7beb3373c770 Mon Sep 17 00:00:00 2001 From: Tania Allard Date: Mon, 11 Nov 2024 16:02:44 +0000 Subject: [PATCH 04/11] FIX - fix dependency pin --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 704920b..5fb5e56 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -84,7 +84,7 @@ outputs: - python >=3.8 - python-docker - python-multipart - - pyyaml==5.3.1 + - pyyaml ==5.3.1 - redis-py - requests - sqlalchemy <2.0a0 From ab9d3f8efe67e5f1fb1d3201b0f99fec0d429747 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 16:09:21 +0000 Subject: [PATCH 05/11] MNT: Re-rendered with conda-build 24.9.0, conda-smithy 3.44.3, and conda-forge-pinning 2024.11.11.08.59.26 --- .scripts/run_win_build.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.scripts/run_win_build.bat b/.scripts/run_win_build.bat index e0a7606..cc0d2c4 100755 --- a/.scripts/run_win_build.bat +++ b/.scripts/run_win_build.bat @@ -34,8 +34,8 @@ call "%MICROMAMBA_EXE%" create --yes --root-prefix "%MAMBA_ROOT_PREFIX%" --prefi pip python=3.12 conda-build conda-forge-ci-setup=4 "conda-build>=24.1" if !errorlevel! neq 0 exit /b !errorlevel! echo Removing %MAMBA_ROOT_PREFIX% -del /S /Q "%MAMBA_ROOT_PREFIX%" -del /S /Q "%MICROMAMBA_TMPDIR%" +del /S /Q "%MAMBA_ROOT_PREFIX%" >nul +del /S /Q "%MICROMAMBA_TMPDIR%" >nul call :start_group "Configuring conda" From 751466ad4eb906273a9d378e12f5a0e0a911e245 Mon Sep 17 00:00:00 2001 From: jaimergp Date: Mon, 11 Nov 2024 18:23:26 +0100 Subject: [PATCH 06/11] Apply CFEP-25 suggestions --- recipe/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 5fb5e56..69a816f 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,7 +26,7 @@ outputs: - conda-store = conda_store.__main__:main requirements: host: - - python >=3.8 + - python 3.8 - pip - hatchling >=1.14.0 - hatch-vcs @@ -59,7 +59,7 @@ outputs: - conda-store-worker = conda_store_server._internal.worker.__main__:main requirements: host: - - python >=3.8 + - python 3.8 - pip - hatchling >=1.14.0 - hatch-vcs From 24fddca960113ece2e6ec9638c8c893ebf626dc3 Mon Sep 17 00:00:00 2001 From: pdmurray Date: Mon, 11 Nov 2024 09:45:17 -0800 Subject: [PATCH 07/11] Pin pyyaml <=5.3.1 --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 69a816f..c120455 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -84,7 +84,7 @@ outputs: - python >=3.8 - python-docker - python-multipart - - pyyaml ==5.3.1 + - pyyaml <=5.3.1 - redis-py - requests - sqlalchemy <2.0a0 From 94a042923f75179c7b18639f2e830446c1e07398 Mon Sep 17 00:00:00 2001 From: jaimergp Date: Tue, 12 Nov 2024 08:38:36 +0100 Subject: [PATCH 08/11] Runtime needs lower bound only --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index c120455..b051572 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -59,7 +59,7 @@ outputs: - conda-store-worker = conda_store_server._internal.worker.__main__:main requirements: host: - - python 3.8 + - python >=3.8 - pip - hatchling >=1.14.0 - hatch-vcs From 6f6643d834d62bbadfcdbe8c0f2a76924b00bfb8 Mon Sep 17 00:00:00 2001 From: jaimergp Date: Tue, 12 Nov 2024 08:38:56 +0100 Subject: [PATCH 09/11] Update recipe/meta.yaml --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index b051572..e6c533e 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,7 +26,7 @@ outputs: - conda-store = conda_store.__main__:main requirements: host: - - python 3.8 + - python >=3.8 - pip - hatchling >=1.14.0 - hatch-vcs From bec6c3f56ae23a596922638f837ad3e298fa1b7d Mon Sep 17 00:00:00 2001 From: jaimergp Date: Tue, 12 Nov 2024 08:40:12 +0100 Subject: [PATCH 10/11] Use python_min --- recipe/meta.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index e6c533e..e2fd9f7 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,7 +26,7 @@ outputs: - conda-store = conda_store.__main__:main requirements: host: - - python >=3.8 + - python {{ python_min }} - pip - hatchling >=1.14.0 - hatch-vcs @@ -36,7 +36,7 @@ outputs: - __win # [win] - aiohttp >=3.8.1 - click - - python >=3.8 + - python >={{ python_min }} - rich - ruamel.yaml - yarl @@ -59,7 +59,7 @@ outputs: - conda-store-worker = conda_store_server._internal.worker.__main__:main requirements: host: - - python >=3.8 + - python {{ python_min }} - pip - hatchling >=1.14.0 - hatch-vcs @@ -81,7 +81,7 @@ outputs: - minio - pydantic <2.0a0 - pyjwt - - python >=3.8 + - python >={{ python_min }} - python-docker - python-multipart - pyyaml <=5.3.1 From 4b757fee34d4c08be43b1e28064b2fe531b20778 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 07:42:48 +0000 Subject: [PATCH 11/11] MNT: Re-rendered with conda-build 24.9.0, conda-smithy 3.44.3, and conda-forge-pinning 2024.11.11.08.59.26 --- .azure-pipelines/azure-pipelines-linux.yml | 16 ++++++++++++++-- .azure-pipelines/azure-pipelines-osx.yml | 13 +++++++++++-- .azure-pipelines/azure-pipelines-win.yml | 13 +++++++++++-- .../linux_64_python3.10.____cpython.yaml | 16 ++++++++++++++++ .../linux_64_python3.11.____cpython.yaml | 16 ++++++++++++++++ .../linux_64_python3.12.____cpython.yaml | 16 ++++++++++++++++ ...aml => linux_64_python3.9.____cpython.yaml} | 8 ++++++++ .ci_support/osx_64_python3.10.____cpython.yaml | 18 ++++++++++++++++++ .ci_support/osx_64_python3.11.____cpython.yaml | 18 ++++++++++++++++++ .ci_support/osx_64_python3.12.____cpython.yaml | 18 ++++++++++++++++++ ....yaml => osx_64_python3.9.____cpython.yaml} | 8 ++++++++ .ci_support/win_64_.yaml | 4 ---- .ci_support/win_64_python3.10.____cpython.yaml | 12 ++++++++++++ .ci_support/win_64_python3.11.____cpython.yaml | 12 ++++++++++++ .ci_support/win_64_python3.12.____cpython.yaml | 12 ++++++++++++ .ci_support/win_64_python3.9.____cpython.yaml | 12 ++++++++++++ 16 files changed, 202 insertions(+), 10 deletions(-) create mode 100644 .ci_support/linux_64_python3.10.____cpython.yaml create mode 100644 .ci_support/linux_64_python3.11.____cpython.yaml create mode 100644 .ci_support/linux_64_python3.12.____cpython.yaml rename .ci_support/{linux_64_.yaml => linux_64_python3.9.____cpython.yaml} (57%) create mode 100644 .ci_support/osx_64_python3.10.____cpython.yaml create mode 100644 .ci_support/osx_64_python3.11.____cpython.yaml create mode 100644 .ci_support/osx_64_python3.12.____cpython.yaml rename .ci_support/{osx_64_.yaml => osx_64_python3.9.____cpython.yaml} (61%) delete mode 100644 .ci_support/win_64_.yaml create mode 100644 .ci_support/win_64_python3.10.____cpython.yaml create mode 100644 .ci_support/win_64_python3.11.____cpython.yaml create mode 100644 .ci_support/win_64_python3.12.____cpython.yaml create mode 100644 .ci_support/win_64_python3.9.____cpython.yaml diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 875d996..3db01d7 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -8,8 +8,20 @@ jobs: vmImage: ubuntu-latest strategy: matrix: - linux_64_: - CONFIG: linux_64_ + linux_64_python3.10.____cpython: + CONFIG: linux_64_python3.10.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_python3.11.____cpython: + CONFIG: linux_64_python3.11.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_python3.12.____cpython: + CONFIG: linux_64_python3.12.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_python3.9.____cpython: + CONFIG: linux_64_python3.9.____cpython UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 timeoutInMinutes: 360 diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index 215eeeb..6c6bd90 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -8,8 +8,17 @@ jobs: vmImage: macOS-13 strategy: matrix: - osx_64_: - CONFIG: osx_64_ + osx_64_python3.10.____cpython: + CONFIG: osx_64_python3.10.____cpython + UPLOAD_PACKAGES: 'True' + osx_64_python3.11.____cpython: + CONFIG: osx_64_python3.11.____cpython + UPLOAD_PACKAGES: 'True' + osx_64_python3.12.____cpython: + CONFIG: osx_64_python3.12.____cpython + UPLOAD_PACKAGES: 'True' + osx_64_python3.9.____cpython: + CONFIG: osx_64_python3.9.____cpython UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 variables: {} diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 9901917..8a6d3fd 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,8 +8,17 @@ jobs: vmImage: windows-2022 strategy: matrix: - win_64_: - CONFIG: win_64_ + win_64_python3.10.____cpython: + CONFIG: win_64_python3.10.____cpython + UPLOAD_PACKAGES: 'True' + win_64_python3.11.____cpython: + CONFIG: win_64_python3.11.____cpython + UPLOAD_PACKAGES: 'True' + win_64_python3.12.____cpython: + CONFIG: win_64_python3.12.____cpython + UPLOAD_PACKAGES: 'True' + win_64_python3.9.____cpython: + CONFIG: win_64_python3.9.____cpython UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 variables: diff --git a/.ci_support/linux_64_python3.10.____cpython.yaml b/.ci_support/linux_64_python3.10.____cpython.yaml new file mode 100644 index 0000000..d740921 --- /dev/null +++ b/.ci_support/linux_64_python3.10.____cpython.yaml @@ -0,0 +1,16 @@ +cdt_name: +- conda +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_min: +- '3.9' diff --git a/.ci_support/linux_64_python3.11.____cpython.yaml b/.ci_support/linux_64_python3.11.____cpython.yaml new file mode 100644 index 0000000..e6d6bbb --- /dev/null +++ b/.ci_support/linux_64_python3.11.____cpython.yaml @@ -0,0 +1,16 @@ +cdt_name: +- conda +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_min: +- '3.9' diff --git a/.ci_support/linux_64_python3.12.____cpython.yaml b/.ci_support/linux_64_python3.12.____cpython.yaml new file mode 100644 index 0000000..b4ff262 --- /dev/null +++ b/.ci_support/linux_64_python3.12.____cpython.yaml @@ -0,0 +1,16 @@ +cdt_name: +- conda +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_cpython +python_min: +- '3.9' diff --git a/.ci_support/linux_64_.yaml b/.ci_support/linux_64_python3.9.____cpython.yaml similarity index 57% rename from .ci_support/linux_64_.yaml rename to .ci_support/linux_64_python3.9.____cpython.yaml index 7f68ce7..69ea38a 100644 --- a/.ci_support/linux_64_.yaml +++ b/.ci_support/linux_64_python3.9.____cpython.yaml @@ -6,3 +6,11 @@ channel_targets: - conda-forge main docker_image: - quay.io/condaforge/linux-anvil-cos7-x86_64 +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_min: +- '3.9' diff --git a/.ci_support/osx_64_python3.10.____cpython.yaml b/.ci_support/osx_64_python3.10.____cpython.yaml new file mode 100644 index 0000000..04656ca --- /dev/null +++ b/.ci_support/osx_64_python3.10.____cpython.yaml @@ -0,0 +1,18 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.13' +MACOSX_SDK_VERSION: +- '10.13' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +macos_machine: +- x86_64-apple-darwin13.4.0 +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_min: +- '3.9' diff --git a/.ci_support/osx_64_python3.11.____cpython.yaml b/.ci_support/osx_64_python3.11.____cpython.yaml new file mode 100644 index 0000000..a0e6184 --- /dev/null +++ b/.ci_support/osx_64_python3.11.____cpython.yaml @@ -0,0 +1,18 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.13' +MACOSX_SDK_VERSION: +- '10.13' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +macos_machine: +- x86_64-apple-darwin13.4.0 +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_min: +- '3.9' diff --git a/.ci_support/osx_64_python3.12.____cpython.yaml b/.ci_support/osx_64_python3.12.____cpython.yaml new file mode 100644 index 0000000..c5f7b92 --- /dev/null +++ b/.ci_support/osx_64_python3.12.____cpython.yaml @@ -0,0 +1,18 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.13' +MACOSX_SDK_VERSION: +- '10.13' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +macos_machine: +- x86_64-apple-darwin13.4.0 +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_cpython +python_min: +- '3.9' diff --git a/.ci_support/osx_64_.yaml b/.ci_support/osx_64_python3.9.____cpython.yaml similarity index 61% rename from .ci_support/osx_64_.yaml rename to .ci_support/osx_64_python3.9.____cpython.yaml index 26fe68d..15c3dc9 100644 --- a/.ci_support/osx_64_.yaml +++ b/.ci_support/osx_64_python3.9.____cpython.yaml @@ -8,3 +8,11 @@ channel_targets: - conda-forge main macos_machine: - x86_64-apple-darwin13.4.0 +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_min: +- '3.9' diff --git a/.ci_support/win_64_.yaml b/.ci_support/win_64_.yaml deleted file mode 100644 index c2135b0..0000000 --- a/.ci_support/win_64_.yaml +++ /dev/null @@ -1,4 +0,0 @@ -channel_sources: -- conda-forge -channel_targets: -- conda-forge main diff --git a/.ci_support/win_64_python3.10.____cpython.yaml b/.ci_support/win_64_python3.10.____cpython.yaml new file mode 100644 index 0000000..c29720f --- /dev/null +++ b/.ci_support/win_64_python3.10.____cpython.yaml @@ -0,0 +1,12 @@ +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +python_min: +- '3.9' diff --git a/.ci_support/win_64_python3.11.____cpython.yaml b/.ci_support/win_64_python3.11.____cpython.yaml new file mode 100644 index 0000000..a4ddf66 --- /dev/null +++ b/.ci_support/win_64_python3.11.____cpython.yaml @@ -0,0 +1,12 @@ +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +python_min: +- '3.9' diff --git a/.ci_support/win_64_python3.12.____cpython.yaml b/.ci_support/win_64_python3.12.____cpython.yaml new file mode 100644 index 0000000..97bd0d9 --- /dev/null +++ b/.ci_support/win_64_python3.12.____cpython.yaml @@ -0,0 +1,12 @@ +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.12.* *_cpython +python_min: +- '3.9' diff --git a/.ci_support/win_64_python3.9.____cpython.yaml b/.ci_support/win_64_python3.9.____cpython.yaml new file mode 100644 index 0000000..41e0a9c --- /dev/null +++ b/.ci_support/win_64_python3.9.____cpython.yaml @@ -0,0 +1,12 @@ +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +python_min: +- '3.9'