From 3afebde442feeb86b11a71bfb08193d96f8a2d8e Mon Sep 17 00:00:00 2001 From: Ilya Lavrenov Date: Wed, 19 Jul 2023 20:07:58 +0400 Subject: [PATCH 1/7] OpenCV 4.8.0 --- recipe/bld.bat | 1 + recipe/build.sh | 3 ++ recipe/meta.yaml | 15 ++++-- .../0005-revert-cocoa-wheel-scroll.patch | 54 +++++++++++++++++++ 4 files changed, 68 insertions(+), 5 deletions(-) create mode 100644 recipe/patches_opencv/0005-revert-cocoa-wheel-scroll.patch diff --git a/recipe/bld.bat b/recipe/bld.bat index 94896038..e0779846 100644 --- a/recipe/bld.bat +++ b/recipe/bld.bat @@ -73,6 +73,7 @@ cmake -LAH -G "Ninja" -DWITH_OPENCLAMDFFT=0 ^ -DWITH_OPENCLAMDBLAS=0 ^ -DWITH_OPENCL_D3D11_NV=0 ^ + -DWITH_OPENVINO=1 ^ -DWITH_1394=0 ^ -DWITH_OPENNI=0 ^ -DWITH_HDF5=1 ^ diff --git a/recipe/build.sh b/recipe/build.sh index 0b7e0247..62e5662f 100644 --- a/recipe/build.sh +++ b/recipe/build.sh @@ -7,6 +7,7 @@ ln -s $PREFIX/include/libpng16 $PREFIX/include/libpng QT="5" V4L="1" +OPENVINO="1" if [[ "${target_platform}" == linux-* ]]; then # Looks like there's a bug in Opencv 3.2.0 for building with FFMPEG @@ -20,6 +21,7 @@ if [[ "${target_platform}" == osx-* ]]; then V4L="0" elif [[ "${target_platform}" == linux-ppc64le ]]; then QT="0" + OPENVINO="0" fi @@ -84,6 +86,7 @@ cmake -LAH -G "Ninja" \ -DWITH_OPENCLAMDFFT=0 \ -DWITH_OPENCLAMDBLAS=0 \ -DWITH_OPENCL_D3D11_NV=0 \ + -DWITH_OPENVINO=$OPENVINO \ -DWITH_1394=0 \ -DWITH_OPENNI=0 \ -DWITH_HDF5=1 \ diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 3196a57a..27492370 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -19,7 +19,7 @@ # # By putting all the generated files in 1 package, this makes the build process # much easier, at the expense of a few MBs in the 'lib' package. -{% set version = "4.7.0" %} +{% set version = "4.8.0" %} {% set major_version = version.split('.')[0] %} {% set PY_VER_MAJOR = PY_VER.split('.')[0] %} {% set PY_VER_MINOR = PY_VER.split('.')[1] %} @@ -31,16 +31,18 @@ package: source: - url: https://github.com/opencv/opencv/archive/{{ version }}.tar.gz fn: opencv-{{ version }}.tar.gz - sha256: 8df0079cdbe179748a18d44731af62a245a45ebf5085223dc03133954c662973 + sha256: cbf47ecc336d2bff36b0dcd7d6c179a9bb59e805136af6b9670ca944aef889bd patches: # backport https://github.com/opencv/opencv/pull/21611 (unmerged as of 06/2023) - patches_opencv/0001-Add-installation-of-pip-metadata-from-cmake.patch - patches_opencv/0002-delete-lines-that-download-opencv.patch - patches_opencv/0003-find-pkgconfig-on-windows.patch - patches_opencv/0004-fix-detection-for-protobuf-23.x.patch + # reverted https://github.com/opencv/opencv/pull/23394 since does not work for macOS 10.9 x86_64 + - patches_opencv/0005-revert-cocoa-wheel-scroll.patch # [osx and x86_64] - url: https://github.com/opencv/opencv_contrib/archive/{{ version }}.tar.gz fn: opencv_contrib-{{ version }}.tar.gz - sha256: 42df840cf9055e59d0e22c249cfb19f04743e1bdad113d31b1573d3934d62584 + sha256: b4aef0f25a22edcd7305df830fa926ca304ea9db65de6ccd02f6cfa5f3357dbb folder: opencv_contrib patches: # Allow attempt to find HDF5 on cross-compile @@ -50,7 +52,7 @@ source: sha256: 78884f64b564a3b06dc6ee731ed33b60c6d8cd864cea07f21d94ba0f90c7b310 build: - number: 6 + number: 0 string: py{{ PY_VER_MAJOR }}{{ PY_VER_MINOR }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }} run_exports: # https://abi-laboratory.pro/index.php?view=timeline&l=opencv @@ -85,7 +87,7 @@ requirements: host: - python - numpy - - eigen + - eigen =3.4.0 # Specify lgpl version of ffmpeg so that there are # no quesitons about the license of the resulting opencv # binary @@ -106,6 +108,7 @@ requirements: - libwebp - qt-main # [not osx and not ppc64le] - zlib + - openvino # [not ppc64le] test: requires: @@ -254,6 +257,7 @@ outputs: - if [[ $($PYTHON -c 'import cv2; print(cv2.__version__)') != $PKG_VERSION ]]; then exit 1; fi # [unix] - python -c "import cv2; assert 'Unknown' not in cv2.videoio_registry.getBackendName(cv2.CAP_V4L)" # [linux] - python -c "import cv2, re; assert re.search('Lapack:\s+YES', cv2.getBuildInformation())" + - pip check - pip list - test $(pip list | grep opencv-python | wc -l) -eq 1 # [unix] requires: @@ -280,3 +284,4 @@ extra: - hajapy - ocefpaf - hmaarrfk + - ilya-lavrenov diff --git a/recipe/patches_opencv/0005-revert-cocoa-wheel-scroll.patch b/recipe/patches_opencv/0005-revert-cocoa-wheel-scroll.patch new file mode 100644 index 00000000..d104c77a --- /dev/null +++ b/recipe/patches_opencv/0005-revert-cocoa-wheel-scroll.patch @@ -0,0 +1,54 @@ +diff --git a/modules/highgui/include/opencv2/highgui.hpp b/modules/highgui/include/opencv2/highgui.hpp +index 71c0cf6e85..32f6dfb25d 100644 +--- a/modules/highgui/include/opencv2/highgui.hpp ++++ b/modules/highgui/include/opencv2/highgui.hpp +@@ -504,7 +504,7 @@ left scrolling, respectively. + + @note + +-Mouse-wheel events are currently supported only on Windows and Cocoa ++Mouse-wheel events are currently supported only on Windows. + + @param flags The mouse callback flags parameter. + */ +diff --git a/modules/highgui/src/window_cocoa.mm b/modules/highgui/src/window_cocoa.mm +index 86f38d0ae8..2f2ba43149 100644 +--- a/modules/highgui/src/window_cocoa.mm ++++ b/modules/highgui/src/window_cocoa.mm +@@ -899,22 +899,8 @@ - (void)cvSendMouseEvent:(NSEvent *)event type:(int)type flags:(int)flags { + mp.y *= (imageSize.height / std::max(viewSize.height, 1.)); + mp.x *= (imageSize.width / std::max(viewSize.width, 1.)); + +- if( [event type] == NSEventTypeScrollWheel ) { +- if( event.hasPreciseScrollingDeltas ) { +- mp.x = int(event.scrollingDeltaX); +- mp.y = int(event.scrollingDeltaY); +- } else { +- mp.x = int(event.scrollingDeltaX / 0.100006); +- mp.y = int(event.scrollingDeltaY / 0.100006); +- } +- if( mp.x && !mp.y && CV_EVENT_MOUSEWHEEL == type ) { +- type = CV_EVENT_MOUSEHWHEEL; +- } +- mouseCallback(type, mp.x, mp.y, flags, mouseParam); +- } else if( mp.x >= 0 && mp.y >= 0 && mp.x < imageSize.width && mp.y < imageSize.height ) { +- mouseCallback(type, mp.x, mp.y, flags, mouseParam); +- } +- ++ if( mp.x >= 0 && mp.y >= 0 && mp.x < imageSize.width && mp.y < imageSize.height ) ++ mouseCallback(type, mp.x, mp.y, flags, mouseParam); + } + + - (void)cvMouseEvent:(NSEvent *)event { +@@ -937,11 +923,6 @@ - (void)cvMouseEvent:(NSEvent *)event { + if([event type] == NSLeftMouseDragged) {[self cvSendMouseEvent:event type:CV_EVENT_MOUSEMOVE flags:flags | CV_EVENT_FLAG_LBUTTON];} + if([event type] == NSRightMouseDragged) {[self cvSendMouseEvent:event type:CV_EVENT_MOUSEMOVE flags:flags | CV_EVENT_FLAG_RBUTTON];} + if([event type] == NSOtherMouseDragged) {[self cvSendMouseEvent:event type:CV_EVENT_MOUSEMOVE flags:flags | CV_EVENT_FLAG_MBUTTON];} +- if([event type] == NSEventTypeScrollWheel) {[self cvSendMouseEvent:event type:CV_EVENT_MOUSEWHEEL flags:flags ];} +-} +- +--(void)scrollWheel:(NSEvent *)theEvent { +- [self cvMouseEvent:theEvent]; + } + - (void)keyDown:(NSEvent *)theEvent { + //cout << "keyDown" << endl; From 22ebc8ea13f951fe7e99b11eab7e62a177cde7cf Mon Sep 17 00:00:00 2001 From: Ilya Lavrenov Date: Thu, 20 Jul 2023 12:08:08 +0400 Subject: [PATCH 2/7] Test --- .azure-pipelines/azure-pipelines-linux.yml | 134 +----------------- .azure-pipelines/azure-pipelines-osx.yml | 56 +------- .azure-pipelines/azure-pipelines-win.yml | 35 +---- ...uf3.21numpy1.21python3.10.____cpython.yaml | 65 --------- ...buf3.21numpy1.21python3.8.____cpython.yaml | 65 --------- ...buf3.21numpy1.21python3.9.____73_pypy.yaml | 65 --------- ...buf3.21numpy1.21python3.9.____cpython.yaml | 65 --------- ...uf3.21numpy1.23python3.11.____cpython.yaml | 65 --------- ...4.23.3numpy1.21python3.10.____cpython.yaml | 65 --------- ...f4.23.3numpy1.21python3.8.____73_pypy.yaml | 65 --------- ...f4.23.3numpy1.21python3.8.____cpython.yaml | 65 --------- ...f4.23.3numpy1.21python3.9.____73_pypy.yaml | 65 --------- ...f4.23.3numpy1.21python3.9.____cpython.yaml | 65 --------- ...4.23.3numpy1.23python3.11.____cpython.yaml | 65 --------- ...uf3.21numpy1.21python3.10.____cpython.yaml | 69 --------- ...buf3.21numpy1.21python3.8.____cpython.yaml | 69 --------- ...buf3.21numpy1.21python3.9.____73_pypy.yaml | 69 --------- ...buf3.21numpy1.21python3.9.____cpython.yaml | 69 --------- ...uf3.21numpy1.23python3.11.____cpython.yaml | 69 --------- ...4.23.3numpy1.21python3.10.____cpython.yaml | 69 --------- ...f4.23.3numpy1.21python3.8.____73_pypy.yaml | 69 --------- ...f4.23.3numpy1.21python3.8.____cpython.yaml | 69 --------- ...f4.23.3numpy1.21python3.9.____73_pypy.yaml | 69 --------- ...f4.23.3numpy1.21python3.9.____cpython.yaml | 69 --------- ...4.23.3numpy1.23python3.11.____cpython.yaml | 69 --------- ...uf3.21numpy1.21python3.10.____cpython.yaml | 63 -------- ...buf3.21numpy1.21python3.8.____cpython.yaml | 63 -------- ...buf3.21numpy1.21python3.9.____73_pypy.yaml | 63 -------- ...buf3.21numpy1.21python3.9.____cpython.yaml | 63 -------- ...uf3.21numpy1.23python3.11.____cpython.yaml | 63 -------- ...4.23.3numpy1.21python3.10.____cpython.yaml | 63 -------- ...f4.23.3numpy1.21python3.8.____73_pypy.yaml | 63 -------- ...f4.23.3numpy1.21python3.8.____cpython.yaml | 63 -------- ...f4.23.3numpy1.21python3.9.____73_pypy.yaml | 63 -------- ...f4.23.3numpy1.21python3.9.____cpython.yaml | 63 -------- ...4.23.3numpy1.23python3.11.____cpython.yaml | 63 -------- ...uf3.21numpy1.21python3.10.____cpython.yaml | 63 -------- ...buf3.21numpy1.21python3.8.____cpython.yaml | 63 -------- ...buf3.21numpy1.21python3.9.____73_pypy.yaml | 63 -------- ...buf3.21numpy1.21python3.9.____cpython.yaml | 63 -------- ...uf3.21numpy1.23python3.11.____cpython.yaml | 63 -------- ...4.23.3numpy1.21python3.10.____cpython.yaml | 63 -------- ...f4.23.3numpy1.21python3.8.____73_pypy.yaml | 63 -------- ...f4.23.3numpy1.21python3.8.____cpython.yaml | 63 -------- ...f4.23.3numpy1.21python3.9.____73_pypy.yaml | 63 -------- ...f4.23.3numpy1.21python3.9.____cpython.yaml | 63 -------- ...4.23.3numpy1.23python3.11.____cpython.yaml | 63 -------- ...uf3.21numpy1.21python3.10.____cpython.yaml | 63 -------- ...buf3.21numpy1.21python3.9.____cpython.yaml | 63 -------- ...uf3.21numpy1.23python3.11.____cpython.yaml | 63 -------- ...4.23.3numpy1.21python3.10.____cpython.yaml | 63 -------- ...f4.23.3numpy1.21python3.8.____cpython.yaml | 63 -------- ...f4.23.3numpy1.21python3.9.____cpython.yaml | 63 -------- ...4.23.3numpy1.23python3.11.____cpython.yaml | 63 -------- ...uf3.21numpy1.21python3.10.____cpython.yaml | 51 ------- ...buf3.21numpy1.21python3.8.____cpython.yaml | 51 ------- ...buf3.21numpy1.21python3.9.____73_pypy.yaml | 51 ------- ...buf3.21numpy1.21python3.9.____cpython.yaml | 51 ------- ...uf3.21numpy1.23python3.11.____cpython.yaml | 51 ------- ...4.23.3numpy1.21python3.10.____cpython.yaml | 51 ------- ...f4.23.3numpy1.21python3.8.____73_pypy.yaml | 51 ------- ...f4.23.3numpy1.21python3.8.____cpython.yaml | 51 ------- ...f4.23.3numpy1.21python3.9.____73_pypy.yaml | 51 ------- ...f4.23.3numpy1.21python3.9.____cpython.yaml | 51 ------- ...4.23.3numpy1.23python3.11.____cpython.yaml | 51 ------- 65 files changed, 3 insertions(+), 4084 deletions(-) delete mode 100644 .ci_support/linux_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml delete mode 100644 .ci_support/linux_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml delete mode 100644 .ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml delete mode 100644 .ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml delete mode 100644 .ci_support/linux_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml delete mode 100644 .ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml delete mode 100644 .ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml delete mode 100644 .ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml delete mode 100644 .ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml delete mode 100644 .ci_support/linux_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml delete mode 100644 .ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml delete mode 100644 .ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml delete mode 100644 .ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml delete mode 100644 .ci_support/linux_aarch64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml delete mode 100644 .ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml delete mode 100644 .ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml delete mode 100644 .ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml delete mode 100644 .ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml delete mode 100644 .ci_support/linux_aarch64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.10.____cpython.yaml delete mode 100644 .ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____cpython.yaml delete mode 100644 .ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml delete mode 100644 .ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____cpython.yaml delete mode 100644 .ci_support/linux_ppc64le_libprotobuf3.21numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml delete mode 100644 .ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml delete mode 100644 .ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml delete mode 100644 .ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml delete mode 100644 .ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml delete mode 100644 .ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/osx_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml delete mode 100644 .ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml delete mode 100644 .ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml delete mode 100644 .ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml delete mode 100644 .ci_support/osx_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml delete mode 100644 .ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml delete mode 100644 .ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml delete mode 100644 .ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml delete mode 100644 .ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml delete mode 100644 .ci_support/osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml delete mode 100644 .ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml delete mode 100644 .ci_support/osx_arm64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml delete mode 100644 .ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml delete mode 100644 .ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml delete mode 100644 .ci_support/osx_arm64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/win_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml delete mode 100644 .ci_support/win_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml delete mode 100644 .ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml delete mode 100644 .ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml delete mode 100644 .ci_support/win_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml delete mode 100644 .ci_support/win_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml delete mode 100644 .ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml delete mode 100644 .ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml delete mode 100644 .ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml delete mode 100644 .ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml delete mode 100644 .ci_support/win_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index f369b69d..42b29d70 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -8,151 +8,19 @@ jobs: vmImage: ubuntu-latest strategy: matrix: - linux_64_libprotobuf3.21numpy1.21python3.10.____cpython: - CONFIG: linux_64_libprotobuf3.21numpy1.21python3.10.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 linux_64_libprotobuf3.21numpy1.21python3.8.____73_pypy: CONFIG: linux_64_libprotobuf3.21numpy1.21python3.8.____73_pypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_libprotobuf3.21numpy1.21python3.8.____cpython: - CONFIG: linux_64_libprotobuf3.21numpy1.21python3.8.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_libprotobuf3.21numpy1.21python3.9.____73_pypy: - CONFIG: linux_64_libprotobuf3.21numpy1.21python3.9.____73_pypy - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_libprotobuf3.21numpy1.21python3.9.____cpython: - CONFIG: linux_64_libprotobuf3.21numpy1.21python3.9.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_libprotobuf3.21numpy1.23python3.11.____cpython: - CONFIG: linux_64_libprotobuf3.21numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_libprotobuf4.23.3numpy1.21python3.10.____cpython: - CONFIG: linux_64_libprotobuf4.23.3numpy1.21python3.10.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy: - CONFIG: linux_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_libprotobuf4.23.3numpy1.21python3.8.____cpython: - CONFIG: linux_64_libprotobuf4.23.3numpy1.21python3.8.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy: - CONFIG: linux_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_libprotobuf4.23.3numpy1.21python3.9.____cpython: - CONFIG: linux_64_libprotobuf4.23.3numpy1.21python3.9.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_libprotobuf4.23.3numpy1.23python3.11.____cpython: - CONFIG: linux_64_libprotobuf4.23.3numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_libprotobuf3.21numpy1.21python3.10.____cpython: - CONFIG: linux_aarch64_libprotobuf3.21numpy1.21python3.10.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 linux_aarch64_libprotobuf3.21numpy1.21python3.8.____73_pypy: CONFIG: linux_aarch64_libprotobuf3.21numpy1.21python3.8.____73_pypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_libprotobuf3.21numpy1.21python3.8.____cpython: - CONFIG: linux_aarch64_libprotobuf3.21numpy1.21python3.8.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_libprotobuf3.21numpy1.21python3.9.____73_pypy: - CONFIG: linux_aarch64_libprotobuf3.21numpy1.21python3.9.____73_pypy - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_libprotobuf3.21numpy1.21python3.9.____cpython: - CONFIG: linux_aarch64_libprotobuf3.21numpy1.21python3.9.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_libprotobuf3.21numpy1.23python3.11.____cpython: - CONFIG: linux_aarch64_libprotobuf3.21numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_libprotobuf4.23.3numpy1.21python3.10.____cpython: - CONFIG: linux_aarch64_libprotobuf4.23.3numpy1.21python3.10.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy: - CONFIG: linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____cpython: - CONFIG: linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy: - CONFIG: linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____cpython: - CONFIG: linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_libprotobuf4.23.3numpy1.23python3.11.____cpython: - CONFIG: linux_aarch64_libprotobuf4.23.3numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_libprotobuf3.21numpy1.21python3.10.____cpython: - CONFIG: linux_ppc64le_libprotobuf3.21numpy1.21python3.10.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____73_pypy: CONFIG: linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____73_pypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____cpython: - CONFIG: linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____73_pypy: - CONFIG: linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____73_pypy - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____cpython: - CONFIG: linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_libprotobuf3.21numpy1.23python3.11.____cpython: - CONFIG: linux_ppc64le_libprotobuf3.21numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_libprotobuf4.23.3numpy1.21python3.10.____cpython: - CONFIG: linux_ppc64le_libprotobuf4.23.3numpy1.21python3.10.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____73_pypy: - CONFIG: linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____73_pypy - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____cpython: - CONFIG: linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____73_pypy: - CONFIG: linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____73_pypy - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____cpython: - CONFIG: linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_libprotobuf4.23.3numpy1.23python3.11.____cpython: - CONFIG: linux_ppc64le_libprotobuf4.23.3numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - maxParallel: 26 + maxParallel: 3 timeoutInMinutes: 360 steps: diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index 8e79efcd..5d1806b3 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -8,67 +8,13 @@ jobs: vmImage: macOS-11 strategy: matrix: - osx_64_libprotobuf3.21numpy1.21python3.10.____cpython: - CONFIG: osx_64_libprotobuf3.21numpy1.21python3.10.____cpython - UPLOAD_PACKAGES: 'True' osx_64_libprotobuf3.21numpy1.21python3.8.____73_pypy: CONFIG: osx_64_libprotobuf3.21numpy1.21python3.8.____73_pypy UPLOAD_PACKAGES: 'True' - osx_64_libprotobuf3.21numpy1.21python3.8.____cpython: - CONFIG: osx_64_libprotobuf3.21numpy1.21python3.8.____cpython - UPLOAD_PACKAGES: 'True' - osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy: - CONFIG: osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy - UPLOAD_PACKAGES: 'True' - osx_64_libprotobuf3.21numpy1.21python3.9.____cpython: - CONFIG: osx_64_libprotobuf3.21numpy1.21python3.9.____cpython - UPLOAD_PACKAGES: 'True' - osx_64_libprotobuf3.21numpy1.23python3.11.____cpython: - CONFIG: osx_64_libprotobuf3.21numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython: - CONFIG: osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython - UPLOAD_PACKAGES: 'True' - osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy: - CONFIG: osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy - UPLOAD_PACKAGES: 'True' - osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython: - CONFIG: osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython - UPLOAD_PACKAGES: 'True' - osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy: - CONFIG: osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy - UPLOAD_PACKAGES: 'True' - osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython: - CONFIG: osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython - UPLOAD_PACKAGES: 'True' - osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython: - CONFIG: osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - osx_arm64_libprotobuf3.21numpy1.21python3.10.____cpython: - CONFIG: osx_arm64_libprotobuf3.21numpy1.21python3.10.____cpython - UPLOAD_PACKAGES: 'True' osx_arm64_libprotobuf3.21numpy1.21python3.8.____cpython: CONFIG: osx_arm64_libprotobuf3.21numpy1.21python3.8.____cpython UPLOAD_PACKAGES: 'True' - osx_arm64_libprotobuf3.21numpy1.21python3.9.____cpython: - CONFIG: osx_arm64_libprotobuf3.21numpy1.21python3.9.____cpython - UPLOAD_PACKAGES: 'True' - osx_arm64_libprotobuf3.21numpy1.23python3.11.____cpython: - CONFIG: osx_arm64_libprotobuf3.21numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - osx_arm64_libprotobuf4.23.3numpy1.21python3.10.____cpython: - CONFIG: osx_arm64_libprotobuf4.23.3numpy1.21python3.10.____cpython - UPLOAD_PACKAGES: 'True' - osx_arm64_libprotobuf4.23.3numpy1.21python3.8.____cpython: - CONFIG: osx_arm64_libprotobuf4.23.3numpy1.21python3.8.____cpython - UPLOAD_PACKAGES: 'True' - osx_arm64_libprotobuf4.23.3numpy1.21python3.9.____cpython: - CONFIG: osx_arm64_libprotobuf4.23.3numpy1.21python3.9.____cpython - UPLOAD_PACKAGES: 'True' - osx_arm64_libprotobuf4.23.3numpy1.23python3.11.____cpython: - CONFIG: osx_arm64_libprotobuf4.23.3numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - maxParallel: 15 + maxParallel: 2 timeoutInMinutes: 360 steps: diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 79f4ff7c..33618b36 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,43 +8,10 @@ jobs: vmImage: windows-2022 strategy: matrix: - win_64_libprotobuf3.21numpy1.21python3.10.____cpython: - CONFIG: win_64_libprotobuf3.21numpy1.21python3.10.____cpython - UPLOAD_PACKAGES: 'True' win_64_libprotobuf3.21numpy1.21python3.8.____73_pypy: CONFIG: win_64_libprotobuf3.21numpy1.21python3.8.____73_pypy UPLOAD_PACKAGES: 'True' - win_64_libprotobuf3.21numpy1.21python3.8.____cpython: - CONFIG: win_64_libprotobuf3.21numpy1.21python3.8.____cpython - UPLOAD_PACKAGES: 'True' - win_64_libprotobuf3.21numpy1.21python3.9.____73_pypy: - CONFIG: win_64_libprotobuf3.21numpy1.21python3.9.____73_pypy - UPLOAD_PACKAGES: 'True' - win_64_libprotobuf3.21numpy1.21python3.9.____cpython: - CONFIG: win_64_libprotobuf3.21numpy1.21python3.9.____cpython - UPLOAD_PACKAGES: 'True' - win_64_libprotobuf3.21numpy1.23python3.11.____cpython: - CONFIG: win_64_libprotobuf3.21numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - win_64_libprotobuf4.23.3numpy1.21python3.10.____cpython: - CONFIG: win_64_libprotobuf4.23.3numpy1.21python3.10.____cpython - UPLOAD_PACKAGES: 'True' - win_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy: - CONFIG: win_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy - UPLOAD_PACKAGES: 'True' - win_64_libprotobuf4.23.3numpy1.21python3.8.____cpython: - CONFIG: win_64_libprotobuf4.23.3numpy1.21python3.8.____cpython - UPLOAD_PACKAGES: 'True' - win_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy: - CONFIG: win_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy - UPLOAD_PACKAGES: 'True' - win_64_libprotobuf4.23.3numpy1.21python3.9.____cpython: - CONFIG: win_64_libprotobuf4.23.3numpy1.21python3.9.____cpython - UPLOAD_PACKAGES: 'True' - win_64_libprotobuf4.23.3numpy1.23python3.11.____cpython: - CONFIG: win_64_libprotobuf4.23.3numpy1.23python3.11.____cpython - UPLOAD_PACKAGES: 'True' - maxParallel: 9 + maxParallel: 1 timeoutInMinutes: 360 variables: CONDA_BLD_PATH: D:\\bld\\ diff --git a/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml deleted file mode 100644 index 6f1548dd..00000000 --- a/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml +++ /dev/null @@ -1,65 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml b/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml deleted file mode 100644 index 9a37e626..00000000 --- a/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml +++ /dev/null @@ -1,65 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml b/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml deleted file mode 100644 index 5095b3b2..00000000 --- a/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml +++ /dev/null @@ -1,65 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_73_pypy -qt_main: -- '5.15' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml deleted file mode 100644 index d486d2f9..00000000 --- a/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml +++ /dev/null @@ -1,65 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index d6246bb8..00000000 --- a/.ci_support/linux_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,65 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml deleted file mode 100644 index def35590..00000000 --- a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml +++ /dev/null @@ -1,65 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml deleted file mode 100644 index 784fc6b8..00000000 --- a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml +++ /dev/null @@ -1,65 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_73_pypy -qt_main: -- '5.15' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml deleted file mode 100644 index d6506346..00000000 --- a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml +++ /dev/null @@ -1,65 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml deleted file mode 100644 index 348e9c76..00000000 --- a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml +++ /dev/null @@ -1,65 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_73_pypy -qt_main: -- '5.15' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml deleted file mode 100644 index b4caab9a..00000000 --- a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml +++ /dev/null @@ -1,65 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index af1f6a85..00000000 --- a/.ci_support/linux_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,65 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml deleted file mode 100644 index aeb851ea..00000000 --- a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml +++ /dev/null @@ -1,69 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml deleted file mode 100644 index b828895f..00000000 --- a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml +++ /dev/null @@ -1,69 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml deleted file mode 100644 index a8ef260c..00000000 --- a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml +++ /dev/null @@ -1,69 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_73_pypy -qt_main: -- '5.15' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml deleted file mode 100644 index 062fad58..00000000 --- a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml +++ /dev/null @@ -1,69 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index 33da68cf..00000000 --- a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,69 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml deleted file mode 100644 index a0463021..00000000 --- a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml +++ /dev/null @@ -1,69 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml deleted file mode 100644 index f539474b..00000000 --- a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml +++ /dev/null @@ -1,69 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_73_pypy -qt_main: -- '5.15' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml deleted file mode 100644 index ae22a134..00000000 --- a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml +++ /dev/null @@ -1,69 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml deleted file mode 100644 index 8cf9baf7..00000000 --- a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml +++ /dev/null @@ -1,69 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_73_pypy -qt_main: -- '5.15' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml deleted file mode 100644 index 71994038..00000000 --- a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml +++ /dev/null @@ -1,69 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index f819c05f..00000000 --- a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,69 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -qt_main: -- '5.15' -target_platform: -- linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.10.____cpython.yaml deleted file mode 100644 index 34bcbf3f..00000000 --- a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.10.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -target_platform: -- linux-ppc64le -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____cpython.yaml deleted file mode 100644 index 1d65474a..00000000 --- a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -target_platform: -- linux-ppc64le -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml deleted file mode 100644 index b665b332..00000000 --- a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml +++ /dev/null @@ -1,63 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_73_pypy -target_platform: -- linux-ppc64le -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____cpython.yaml deleted file mode 100644 index 44e8d2a7..00000000 --- a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -target_platform: -- linux-ppc64le -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index 5a2d29e9..00000000 --- a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -target_platform: -- linux-ppc64le -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml deleted file mode 100644 index c4fcf956..00000000 --- a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -target_platform: -- linux-ppc64le -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml deleted file mode 100644 index 0300325b..00000000 --- a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml +++ /dev/null @@ -1,63 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_73_pypy -target_platform: -- linux-ppc64le -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml deleted file mode 100644 index 08a013b0..00000000 --- a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -target_platform: -- linux-ppc64le -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml deleted file mode 100644 index cd8cffad..00000000 --- a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml +++ /dev/null @@ -1,63 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_73_pypy -target_platform: -- linux-ppc64le -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml deleted file mode 100644 index a828d7cb..00000000 --- a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -target_platform: -- linux-ppc64le -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index 16be9520..00000000 --- a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -c_compiler: -- gcc -c_compiler_version: -- '12' -cdt_name: -- cos7 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '12' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -target_platform: -- linux-ppc64le -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml deleted file mode 100644 index b1f28cec..00000000 --- a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml deleted file mode 100644 index 93ac0e50..00000000 --- a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml deleted file mode 100644 index 857f4926..00000000 --- a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_73_pypy -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml deleted file mode 100644 index f1388036..00000000 --- a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index b1e51657..00000000 --- a/.ci_support/osx_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml deleted file mode 100644 index a16aa7b7..00000000 --- a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml deleted file mode 100644 index 43f04215..00000000 --- a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_73_pypy -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml deleted file mode 100644 index 3e5498ca..00000000 --- a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml deleted file mode 100644 index 1513c092..00000000 --- a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_73_pypy -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml deleted file mode 100644 index d6cde728..00000000 --- a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index 94d8bd90..00000000 --- a/.ci_support/osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -target_platform: -- osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml deleted file mode 100644 index 84e13de1..00000000 --- a/.ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml deleted file mode 100644 index 8b8d9723..00000000 --- a/.ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index c1aeec37..00000000 --- a/.ci_support/osx_arm64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml deleted file mode 100644 index 39132f61..00000000 --- a/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml deleted file mode 100644 index 7a07c232..00000000 --- a/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml deleted file mode 100644 index dfe02c9a..00000000 --- a/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index daeb0b95..00000000 --- a/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,63 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -c_compiler: -- clang -c_compiler_version: -- '15' -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '15' -ffmpeg: -- '6' -freetype: -- '2' -glib: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libiconv: -- '1' -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -target_platform: -- osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/win_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml deleted file mode 100644 index 35b7fd10..00000000 --- a/.ci_support/win_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -ffmpeg: -- '6' -freetype: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -qt_main: -- '5.15' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml b/.ci_support/win_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml deleted file mode 100644 index 152748b4..00000000 --- a/.ci_support/win_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -ffmpeg: -- '6' -freetype: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -qt_main: -- '5.15' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml b/.ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml deleted file mode 100644 index 5946fff0..00000000 --- a/.ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml +++ /dev/null @@ -1,51 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -ffmpeg: -- '6' -freetype: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_73_pypy -qt_main: -- '5.15' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml deleted file mode 100644 index e6a61f0f..00000000 --- a/.ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -ffmpeg: -- '6' -freetype: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -qt_main: -- '5.15' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/win_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index ee393acf..00000000 --- a/.ci_support/win_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -ffmpeg: -- '6' -freetype: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- '3.21' -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -qt_main: -- '5.15' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml deleted file mode 100644 index 0bbeebe3..00000000 --- a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -ffmpeg: -- '6' -freetype: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.10.* *_cpython -qt_main: -- '5.15' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml deleted file mode 100644 index c7b08681..00000000 --- a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml +++ /dev/null @@ -1,51 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -ffmpeg: -- '6' -freetype: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_73_pypy -qt_main: -- '5.15' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml deleted file mode 100644 index 18c8ddcd..00000000 --- a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -ffmpeg: -- '6' -freetype: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.8.* *_cpython -qt_main: -- '5.15' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml deleted file mode 100644 index e12e8aa7..00000000 --- a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml +++ /dev/null @@ -1,51 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -ffmpeg: -- '6' -freetype: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_73_pypy -qt_main: -- '5.15' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml deleted file mode 100644 index 1f8c8254..00000000 --- a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -ffmpeg: -- '6' -freetype: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.21' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.9.* *_cpython -qt_main: -- '5.15' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' diff --git a/.ci_support/win_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/win_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml deleted file mode 100644 index ed355cb9..00000000 --- a/.ci_support/win_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml +++ /dev/null @@ -1,51 +0,0 @@ -c_compiler: -- vs2019 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -ffmpeg: -- '6' -freetype: -- '2' -harfbuzz: -- '7' -hdf5: -- 1.14.1 -jasper: -- '4' -libcblas: -- 3.9 *netlib -libjpeg_turbo: -- 2.1.5 -liblapack: -- 3.9 *netlib -liblapacke: -- 3.9 *netlib -libpng: -- '1.6' -libprotobuf: -- 4.23.3 -libtiff: -- '4.5' -libwebp: -- '1' -numpy: -- '1.23' -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x -python: -- 3.11.* *_cpython -qt_main: -- '5.15' -target_platform: -- win-64 -zip_keys: -- - python - - numpy -zlib: -- '1.2' From afd1c5db3cc9cd2a74577a152a5cdaec7ba5e495 Mon Sep 17 00:00:00 2001 From: Ilya Lavrenov Date: Thu, 20 Jul 2023 14:06:14 +0400 Subject: [PATCH 3/7] Added conda_build_config.yaml --- recipe/conda_build_config.yaml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 recipe/conda_build_config.yaml diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml new file mode 100644 index 00000000..6bf18a09 --- /dev/null +++ b/recipe/conda_build_config.yaml @@ -0,0 +1,2 @@ +MACOSX_SDK_VERSION: # [osx and x86_64] + - 10.12 # [osx and x86_64] From 45cdbdbe1835ef3cbbbce4ff2c46a0217edb2583 Mon Sep 17 00:00:00 2001 From: Ilya Lavrenov Date: Thu, 20 Jul 2023 14:11:03 +0400 Subject: [PATCH 4/7] Return files back --- .azure-pipelines/azure-pipelines-linux.yml | 134 +++++++++++++++++- .azure-pipelines/azure-pipelines-osx.yml | 56 +++++++- .azure-pipelines/azure-pipelines-win.yml | 35 ++++- ...uf3.21numpy1.21python3.10.____cpython.yaml | 65 +++++++++ ...buf3.21numpy1.21python3.8.____cpython.yaml | 65 +++++++++ ...buf3.21numpy1.21python3.9.____73_pypy.yaml | 65 +++++++++ ...buf3.21numpy1.21python3.9.____cpython.yaml | 65 +++++++++ ...uf3.21numpy1.23python3.11.____cpython.yaml | 65 +++++++++ ...4.23.3numpy1.21python3.10.____cpython.yaml | 65 +++++++++ ...f4.23.3numpy1.21python3.8.____73_pypy.yaml | 65 +++++++++ ...f4.23.3numpy1.21python3.8.____cpython.yaml | 65 +++++++++ ...f4.23.3numpy1.21python3.9.____73_pypy.yaml | 65 +++++++++ ...f4.23.3numpy1.21python3.9.____cpython.yaml | 65 +++++++++ ...4.23.3numpy1.23python3.11.____cpython.yaml | 65 +++++++++ ...uf3.21numpy1.21python3.10.____cpython.yaml | 69 +++++++++ ...buf3.21numpy1.21python3.8.____cpython.yaml | 69 +++++++++ ...buf3.21numpy1.21python3.9.____73_pypy.yaml | 69 +++++++++ ...buf3.21numpy1.21python3.9.____cpython.yaml | 69 +++++++++ ...uf3.21numpy1.23python3.11.____cpython.yaml | 69 +++++++++ ...4.23.3numpy1.21python3.10.____cpython.yaml | 69 +++++++++ ...f4.23.3numpy1.21python3.8.____73_pypy.yaml | 69 +++++++++ ...f4.23.3numpy1.21python3.8.____cpython.yaml | 69 +++++++++ ...f4.23.3numpy1.21python3.9.____73_pypy.yaml | 69 +++++++++ ...f4.23.3numpy1.21python3.9.____cpython.yaml | 69 +++++++++ ...4.23.3numpy1.23python3.11.____cpython.yaml | 69 +++++++++ ...uf3.21numpy1.21python3.10.____cpython.yaml | 63 ++++++++ ...buf3.21numpy1.21python3.8.____cpython.yaml | 63 ++++++++ ...buf3.21numpy1.21python3.9.____73_pypy.yaml | 63 ++++++++ ...buf3.21numpy1.21python3.9.____cpython.yaml | 63 ++++++++ ...uf3.21numpy1.23python3.11.____cpython.yaml | 63 ++++++++ ...4.23.3numpy1.21python3.10.____cpython.yaml | 63 ++++++++ ...f4.23.3numpy1.21python3.8.____73_pypy.yaml | 63 ++++++++ ...f4.23.3numpy1.21python3.8.____cpython.yaml | 63 ++++++++ ...f4.23.3numpy1.21python3.9.____73_pypy.yaml | 63 ++++++++ ...f4.23.3numpy1.21python3.9.____cpython.yaml | 63 ++++++++ ...4.23.3numpy1.23python3.11.____cpython.yaml | 63 ++++++++ ...uf3.21numpy1.21python3.10.____cpython.yaml | 63 ++++++++ ...buf3.21numpy1.21python3.8.____cpython.yaml | 63 ++++++++ ...buf3.21numpy1.21python3.9.____73_pypy.yaml | 63 ++++++++ ...buf3.21numpy1.21python3.9.____cpython.yaml | 63 ++++++++ ...uf3.21numpy1.23python3.11.____cpython.yaml | 63 ++++++++ ...4.23.3numpy1.21python3.10.____cpython.yaml | 63 ++++++++ ...f4.23.3numpy1.21python3.8.____73_pypy.yaml | 63 ++++++++ ...f4.23.3numpy1.21python3.8.____cpython.yaml | 63 ++++++++ ...f4.23.3numpy1.21python3.9.____73_pypy.yaml | 63 ++++++++ ...f4.23.3numpy1.21python3.9.____cpython.yaml | 63 ++++++++ ...4.23.3numpy1.23python3.11.____cpython.yaml | 63 ++++++++ ...uf3.21numpy1.21python3.10.____cpython.yaml | 63 ++++++++ ...buf3.21numpy1.21python3.9.____cpython.yaml | 63 ++++++++ ...uf3.21numpy1.23python3.11.____cpython.yaml | 63 ++++++++ ...4.23.3numpy1.21python3.10.____cpython.yaml | 63 ++++++++ ...f4.23.3numpy1.21python3.8.____cpython.yaml | 63 ++++++++ ...f4.23.3numpy1.21python3.9.____cpython.yaml | 63 ++++++++ ...4.23.3numpy1.23python3.11.____cpython.yaml | 63 ++++++++ ...uf3.21numpy1.21python3.10.____cpython.yaml | 51 +++++++ ...buf3.21numpy1.21python3.8.____cpython.yaml | 51 +++++++ ...buf3.21numpy1.21python3.9.____73_pypy.yaml | 51 +++++++ ...buf3.21numpy1.21python3.9.____cpython.yaml | 51 +++++++ ...uf3.21numpy1.23python3.11.____cpython.yaml | 51 +++++++ ...4.23.3numpy1.21python3.10.____cpython.yaml | 51 +++++++ ...f4.23.3numpy1.21python3.8.____73_pypy.yaml | 51 +++++++ ...f4.23.3numpy1.21python3.8.____cpython.yaml | 51 +++++++ ...f4.23.3numpy1.21python3.9.____73_pypy.yaml | 51 +++++++ ...f4.23.3numpy1.21python3.9.____cpython.yaml | 51 +++++++ ...4.23.3numpy1.23python3.11.____cpython.yaml | 51 +++++++ 65 files changed, 4084 insertions(+), 3 deletions(-) create mode 100644 .ci_support/linux_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/linux_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml create mode 100644 .ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/linux_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml create mode 100644 .ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml create mode 100644 .ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/linux_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml create mode 100644 .ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/linux_aarch64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml create mode 100644 .ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml create mode 100644 .ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/linux_aarch64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml create mode 100644 .ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/linux_ppc64le_libprotobuf3.21numpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml create mode 100644 .ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml create mode 100644 .ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/osx_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml create mode 100644 .ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/osx_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml create mode 100644 .ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml create mode 100644 .ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/osx_arm64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/osx_arm64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/win_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/win_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml create mode 100644 .ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/win_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml create mode 100644 .ci_support/win_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml create mode 100644 .ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml create mode 100644 .ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml create mode 100644 .ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml create mode 100644 .ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml create mode 100644 .ci_support/win_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 42b29d70..f369b69d 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -8,19 +8,151 @@ jobs: vmImage: ubuntu-latest strategy: matrix: + linux_64_libprotobuf3.21numpy1.21python3.10.____cpython: + CONFIG: linux_64_libprotobuf3.21numpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 linux_64_libprotobuf3.21numpy1.21python3.8.____73_pypy: CONFIG: linux_64_libprotobuf3.21numpy1.21python3.8.____73_pypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_libprotobuf3.21numpy1.21python3.8.____cpython: + CONFIG: linux_64_libprotobuf3.21numpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_libprotobuf3.21numpy1.21python3.9.____73_pypy: + CONFIG: linux_64_libprotobuf3.21numpy1.21python3.9.____73_pypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_libprotobuf3.21numpy1.21python3.9.____cpython: + CONFIG: linux_64_libprotobuf3.21numpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_libprotobuf3.21numpy1.23python3.11.____cpython: + CONFIG: linux_64_libprotobuf3.21numpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_libprotobuf4.23.3numpy1.21python3.10.____cpython: + CONFIG: linux_64_libprotobuf4.23.3numpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy: + CONFIG: linux_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_libprotobuf4.23.3numpy1.21python3.8.____cpython: + CONFIG: linux_64_libprotobuf4.23.3numpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy: + CONFIG: linux_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_libprotobuf4.23.3numpy1.21python3.9.____cpython: + CONFIG: linux_64_libprotobuf4.23.3numpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_libprotobuf4.23.3numpy1.23python3.11.____cpython: + CONFIG: linux_64_libprotobuf4.23.3numpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_libprotobuf3.21numpy1.21python3.10.____cpython: + CONFIG: linux_aarch64_libprotobuf3.21numpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 linux_aarch64_libprotobuf3.21numpy1.21python3.8.____73_pypy: CONFIG: linux_aarch64_libprotobuf3.21numpy1.21python3.8.____73_pypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_libprotobuf3.21numpy1.21python3.8.____cpython: + CONFIG: linux_aarch64_libprotobuf3.21numpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_libprotobuf3.21numpy1.21python3.9.____73_pypy: + CONFIG: linux_aarch64_libprotobuf3.21numpy1.21python3.9.____73_pypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_libprotobuf3.21numpy1.21python3.9.____cpython: + CONFIG: linux_aarch64_libprotobuf3.21numpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_libprotobuf3.21numpy1.23python3.11.____cpython: + CONFIG: linux_aarch64_libprotobuf3.21numpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_libprotobuf4.23.3numpy1.21python3.10.____cpython: + CONFIG: linux_aarch64_libprotobuf4.23.3numpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy: + CONFIG: linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____cpython: + CONFIG: linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy: + CONFIG: linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____cpython: + CONFIG: linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_libprotobuf4.23.3numpy1.23python3.11.____cpython: + CONFIG: linux_aarch64_libprotobuf4.23.3numpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_libprotobuf3.21numpy1.21python3.10.____cpython: + CONFIG: linux_ppc64le_libprotobuf3.21numpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____73_pypy: CONFIG: linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____73_pypy UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - maxParallel: 3 + linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____cpython: + CONFIG: linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____73_pypy: + CONFIG: linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____73_pypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____cpython: + CONFIG: linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_libprotobuf3.21numpy1.23python3.11.____cpython: + CONFIG: linux_ppc64le_libprotobuf3.21numpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_libprotobuf4.23.3numpy1.21python3.10.____cpython: + CONFIG: linux_ppc64le_libprotobuf4.23.3numpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____73_pypy: + CONFIG: linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____73_pypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____cpython: + CONFIG: linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____73_pypy: + CONFIG: linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____73_pypy + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____cpython: + CONFIG: linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_libprotobuf4.23.3numpy1.23python3.11.____cpython: + CONFIG: linux_ppc64le_libprotobuf4.23.3numpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + maxParallel: 26 timeoutInMinutes: 360 steps: diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index 5d1806b3..8e79efcd 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -8,13 +8,67 @@ jobs: vmImage: macOS-11 strategy: matrix: + osx_64_libprotobuf3.21numpy1.21python3.10.____cpython: + CONFIG: osx_64_libprotobuf3.21numpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' osx_64_libprotobuf3.21numpy1.21python3.8.____73_pypy: CONFIG: osx_64_libprotobuf3.21numpy1.21python3.8.____73_pypy UPLOAD_PACKAGES: 'True' + osx_64_libprotobuf3.21numpy1.21python3.8.____cpython: + CONFIG: osx_64_libprotobuf3.21numpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy: + CONFIG: osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy + UPLOAD_PACKAGES: 'True' + osx_64_libprotobuf3.21numpy1.21python3.9.____cpython: + CONFIG: osx_64_libprotobuf3.21numpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + osx_64_libprotobuf3.21numpy1.23python3.11.____cpython: + CONFIG: osx_64_libprotobuf3.21numpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython: + CONFIG: osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' + osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy: + CONFIG: osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy + UPLOAD_PACKAGES: 'True' + osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython: + CONFIG: osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy: + CONFIG: osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy + UPLOAD_PACKAGES: 'True' + osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython: + CONFIG: osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython: + CONFIG: osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_libprotobuf3.21numpy1.21python3.10.____cpython: + CONFIG: osx_arm64_libprotobuf3.21numpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' osx_arm64_libprotobuf3.21numpy1.21python3.8.____cpython: CONFIG: osx_arm64_libprotobuf3.21numpy1.21python3.8.____cpython UPLOAD_PACKAGES: 'True' - maxParallel: 2 + osx_arm64_libprotobuf3.21numpy1.21python3.9.____cpython: + CONFIG: osx_arm64_libprotobuf3.21numpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_libprotobuf3.21numpy1.23python3.11.____cpython: + CONFIG: osx_arm64_libprotobuf3.21numpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_libprotobuf4.23.3numpy1.21python3.10.____cpython: + CONFIG: osx_arm64_libprotobuf4.23.3numpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_libprotobuf4.23.3numpy1.21python3.8.____cpython: + CONFIG: osx_arm64_libprotobuf4.23.3numpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_libprotobuf4.23.3numpy1.21python3.9.____cpython: + CONFIG: osx_arm64_libprotobuf4.23.3numpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + osx_arm64_libprotobuf4.23.3numpy1.23python3.11.____cpython: + CONFIG: osx_arm64_libprotobuf4.23.3numpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + maxParallel: 15 timeoutInMinutes: 360 steps: diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 33618b36..79f4ff7c 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,10 +8,43 @@ jobs: vmImage: windows-2022 strategy: matrix: + win_64_libprotobuf3.21numpy1.21python3.10.____cpython: + CONFIG: win_64_libprotobuf3.21numpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' win_64_libprotobuf3.21numpy1.21python3.8.____73_pypy: CONFIG: win_64_libprotobuf3.21numpy1.21python3.8.____73_pypy UPLOAD_PACKAGES: 'True' - maxParallel: 1 + win_64_libprotobuf3.21numpy1.21python3.8.____cpython: + CONFIG: win_64_libprotobuf3.21numpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + win_64_libprotobuf3.21numpy1.21python3.9.____73_pypy: + CONFIG: win_64_libprotobuf3.21numpy1.21python3.9.____73_pypy + UPLOAD_PACKAGES: 'True' + win_64_libprotobuf3.21numpy1.21python3.9.____cpython: + CONFIG: win_64_libprotobuf3.21numpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + win_64_libprotobuf3.21numpy1.23python3.11.____cpython: + CONFIG: win_64_libprotobuf3.21numpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + win_64_libprotobuf4.23.3numpy1.21python3.10.____cpython: + CONFIG: win_64_libprotobuf4.23.3numpy1.21python3.10.____cpython + UPLOAD_PACKAGES: 'True' + win_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy: + CONFIG: win_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy + UPLOAD_PACKAGES: 'True' + win_64_libprotobuf4.23.3numpy1.21python3.8.____cpython: + CONFIG: win_64_libprotobuf4.23.3numpy1.21python3.8.____cpython + UPLOAD_PACKAGES: 'True' + win_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy: + CONFIG: win_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy + UPLOAD_PACKAGES: 'True' + win_64_libprotobuf4.23.3numpy1.21python3.9.____cpython: + CONFIG: win_64_libprotobuf4.23.3numpy1.21python3.9.____cpython + UPLOAD_PACKAGES: 'True' + win_64_libprotobuf4.23.3numpy1.23python3.11.____cpython: + CONFIG: win_64_libprotobuf4.23.3numpy1.23python3.11.____cpython + UPLOAD_PACKAGES: 'True' + maxParallel: 9 timeoutInMinutes: 360 variables: CONDA_BLD_PATH: D:\\bld\\ diff --git a/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..6f1548dd --- /dev/null +++ b/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml @@ -0,0 +1,65 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml b/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..9a37e626 --- /dev/null +++ b/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml @@ -0,0 +1,65 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml b/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml new file mode 100644 index 00000000..5095b3b2 --- /dev/null +++ b/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml @@ -0,0 +1,65 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +qt_main: +- '5.15' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..d486d2f9 --- /dev/null +++ b/.ci_support/linux_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml @@ -0,0 +1,65 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..d6246bb8 --- /dev/null +++ b/.ci_support/linux_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml @@ -0,0 +1,65 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..def35590 --- /dev/null +++ b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml @@ -0,0 +1,65 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml new file mode 100644 index 00000000..784fc6b8 --- /dev/null +++ b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml @@ -0,0 +1,65 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +qt_main: +- '5.15' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..d6506346 --- /dev/null +++ b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml @@ -0,0 +1,65 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml new file mode 100644 index 00000000..348e9c76 --- /dev/null +++ b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml @@ -0,0 +1,65 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +qt_main: +- '5.15' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..b4caab9a --- /dev/null +++ b/.ci_support/linux_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml @@ -0,0 +1,65 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..af1f6a85 --- /dev/null +++ b/.ci_support/linux_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml @@ -0,0 +1,65 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..aeb851ea --- /dev/null +++ b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml @@ -0,0 +1,69 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..b828895f --- /dev/null +++ b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml @@ -0,0 +1,69 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml new file mode 100644 index 00000000..a8ef260c --- /dev/null +++ b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml @@ -0,0 +1,69 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +qt_main: +- '5.15' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..062fad58 --- /dev/null +++ b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml @@ -0,0 +1,69 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..33da68cf --- /dev/null +++ b/.ci_support/linux_aarch64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml @@ -0,0 +1,69 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..a0463021 --- /dev/null +++ b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml @@ -0,0 +1,69 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml new file mode 100644 index 00000000..f539474b --- /dev/null +++ b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml @@ -0,0 +1,69 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +qt_main: +- '5.15' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..ae22a134 --- /dev/null +++ b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml @@ -0,0 +1,69 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml new file mode 100644 index 00000000..8cf9baf7 --- /dev/null +++ b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml @@ -0,0 +1,69 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +qt_main: +- '5.15' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..71994038 --- /dev/null +++ b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml @@ -0,0 +1,69 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..f819c05f --- /dev/null +++ b/.ci_support/linux_aarch64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml @@ -0,0 +1,69 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +qt_main: +- '5.15' +target_platform: +- linux-aarch64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..34bcbf3f --- /dev/null +++ b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.10.____cpython.yaml @@ -0,0 +1,63 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +target_platform: +- linux-ppc64le +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..1d65474a --- /dev/null +++ b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.8.____cpython.yaml @@ -0,0 +1,63 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +target_platform: +- linux-ppc64le +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml new file mode 100644 index 00000000..b665b332 --- /dev/null +++ b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml @@ -0,0 +1,63 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +target_platform: +- linux-ppc64le +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..44e8d2a7 --- /dev/null +++ b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.21python3.9.____cpython.yaml @@ -0,0 +1,63 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +target_platform: +- linux-ppc64le +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..5a2d29e9 --- /dev/null +++ b/.ci_support/linux_ppc64le_libprotobuf3.21numpy1.23python3.11.____cpython.yaml @@ -0,0 +1,63 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +target_platform: +- linux-ppc64le +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..c4fcf956 --- /dev/null +++ b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml @@ -0,0 +1,63 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +target_platform: +- linux-ppc64le +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml new file mode 100644 index 00000000..0300325b --- /dev/null +++ b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml @@ -0,0 +1,63 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +target_platform: +- linux-ppc64le +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..08a013b0 --- /dev/null +++ b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml @@ -0,0 +1,63 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +target_platform: +- linux-ppc64le +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml new file mode 100644 index 00000000..cd8cffad --- /dev/null +++ b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml @@ -0,0 +1,63 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +target_platform: +- linux-ppc64le +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..a828d7cb --- /dev/null +++ b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml @@ -0,0 +1,63 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +target_platform: +- linux-ppc64le +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..16be9520 --- /dev/null +++ b/.ci_support/linux_ppc64le_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml @@ -0,0 +1,63 @@ +c_compiler: +- gcc +c_compiler_version: +- '12' +cdt_name: +- cos7 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '12' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +target_platform: +- linux-ppc64le +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..b1f28cec --- /dev/null +++ b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..93ac0e50 --- /dev/null +++ b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml new file mode 100644 index 00000000..857f4926 --- /dev/null +++ b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..f1388036 --- /dev/null +++ b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..b1e51657 --- /dev/null +++ b/.ci_support/osx_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..a16aa7b7 --- /dev/null +++ b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml new file mode 100644 index 00000000..43f04215 --- /dev/null +++ b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..3e5498ca --- /dev/null +++ b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml new file mode 100644 index 00000000..1513c092 --- /dev/null +++ b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..d6cde728 --- /dev/null +++ b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..94d8bd90 --- /dev/null +++ b/.ci_support/osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +target_platform: +- osx-64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..84e13de1 --- /dev/null +++ b/.ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..8b8d9723 --- /dev/null +++ b/.ci_support/osx_arm64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..c1aeec37 --- /dev/null +++ b/.ci_support/osx_arm64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..39132f61 --- /dev/null +++ b/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..7a07c232 --- /dev/null +++ b/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..dfe02c9a --- /dev/null +++ b/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..daeb0b95 --- /dev/null +++ b/.ci_support/osx_arm64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml @@ -0,0 +1,63 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '15' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '15' +ffmpeg: +- '6' +freetype: +- '2' +glib: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libiconv: +- '1' +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +target_platform: +- osx-arm64 +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/win_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..35b7fd10 --- /dev/null +++ b/.ci_support/win_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml @@ -0,0 +1,51 @@ +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +ffmpeg: +- '6' +freetype: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +qt_main: +- '5.15' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml b/.ci_support/win_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..152748b4 --- /dev/null +++ b/.ci_support/win_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml @@ -0,0 +1,51 @@ +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +ffmpeg: +- '6' +freetype: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +qt_main: +- '5.15' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml b/.ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml new file mode 100644 index 00000000..5946fff0 --- /dev/null +++ b/.ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml @@ -0,0 +1,51 @@ +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +ffmpeg: +- '6' +freetype: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +qt_main: +- '5.15' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..e6a61f0f --- /dev/null +++ b/.ci_support/win_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml @@ -0,0 +1,51 @@ +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +ffmpeg: +- '6' +freetype: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +qt_main: +- '5.15' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/win_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..ee393acf --- /dev/null +++ b/.ci_support/win_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml @@ -0,0 +1,51 @@ +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +ffmpeg: +- '6' +freetype: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- '3.21' +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +qt_main: +- '5.15' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml new file mode 100644 index 00000000..0bbeebe3 --- /dev/null +++ b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml @@ -0,0 +1,51 @@ +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +ffmpeg: +- '6' +freetype: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.10.* *_cpython +qt_main: +- '5.15' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml new file mode 100644 index 00000000..c7b08681 --- /dev/null +++ b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml @@ -0,0 +1,51 @@ +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +ffmpeg: +- '6' +freetype: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_73_pypy +qt_main: +- '5.15' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml new file mode 100644 index 00000000..18c8ddcd --- /dev/null +++ b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml @@ -0,0 +1,51 @@ +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +ffmpeg: +- '6' +freetype: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.8.* *_cpython +qt_main: +- '5.15' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml new file mode 100644 index 00000000..e12e8aa7 --- /dev/null +++ b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml @@ -0,0 +1,51 @@ +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +ffmpeg: +- '6' +freetype: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_73_pypy +qt_main: +- '5.15' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml new file mode 100644 index 00000000..1f8c8254 --- /dev/null +++ b/.ci_support/win_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml @@ -0,0 +1,51 @@ +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +ffmpeg: +- '6' +freetype: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.21' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.9.* *_cpython +qt_main: +- '5.15' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' diff --git a/.ci_support/win_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/win_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml new file mode 100644 index 00000000..ed355cb9 --- /dev/null +++ b/.ci_support/win_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml @@ -0,0 +1,51 @@ +c_compiler: +- vs2019 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +ffmpeg: +- '6' +freetype: +- '2' +harfbuzz: +- '7' +hdf5: +- 1.14.1 +jasper: +- '4' +libcblas: +- 3.9 *netlib +libjpeg_turbo: +- 2.1.5 +liblapack: +- 3.9 *netlib +liblapacke: +- 3.9 *netlib +libpng: +- '1.6' +libprotobuf: +- 4.23.3 +libtiff: +- '4.5' +libwebp: +- '1' +numpy: +- '1.23' +pin_run_as_build: + python: + min_pin: x.x + max_pin: x.x +python: +- 3.11.* *_cpython +qt_main: +- '5.15' +target_platform: +- win-64 +zip_keys: +- - python + - numpy +zlib: +- '1.2' From 2366337d66fa5bd33c88c2d2ba1d69b861654932 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Thu, 20 Jul 2023 10:16:47 +0000 Subject: [PATCH 5/7] MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.0, and conda-forge-pinning 2023.07.19.16.49.37 --- .azure-pipelines/azure-pipelines-win.yml | 5 +- .ci_support/migrations/harfbuzz7.yaml | 7 --- ...uf3.21numpy1.21python3.10.____cpython.yaml | 2 + ...buf3.21numpy1.21python3.8.____73_pypy.yaml | 2 + ...buf3.21numpy1.21python3.8.____cpython.yaml | 2 + ...buf3.21numpy1.21python3.9.____73_pypy.yaml | 2 + ...buf3.21numpy1.21python3.9.____cpython.yaml | 2 + ...uf3.21numpy1.23python3.11.____cpython.yaml | 2 + ...4.23.3numpy1.21python3.10.____cpython.yaml | 2 + ...f4.23.3numpy1.21python3.8.____73_pypy.yaml | 2 + ...f4.23.3numpy1.21python3.8.____cpython.yaml | 2 + ...f4.23.3numpy1.21python3.9.____73_pypy.yaml | 2 + ...f4.23.3numpy1.21python3.9.____cpython.yaml | 2 + ...4.23.3numpy1.23python3.11.____cpython.yaml | 2 + .github/CODEOWNERS | 2 +- .scripts/run_osx_build.sh | 10 ++-- README.md | 1 + recipe/meta.yaml | 2 - .../0005-revert-cocoa-wheel-scroll.patch | 54 ------------------- 19 files changed, 35 insertions(+), 70 deletions(-) delete mode 100644 .ci_support/migrations/harfbuzz7.yaml delete mode 100644 recipe/patches_opencv/0005-revert-cocoa-wheel-scroll.patch diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 79f4ff7c..891b8c98 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -94,7 +94,10 @@ jobs: if EXIST LICENSE.txt ( copy LICENSE.txt "recipe\\recipe-scripts-license.txt" ) - conda.exe mambabuild "recipe" -m .ci_support\%CONFIG%.yaml --suppress-variables + if NOT [%HOST_PLATFORM%] == [%BUILD_PLATFORM%] ( + set "EXTRA_CB_OPTIONS=%EXTRA_CB_OPTIONS% --no-test" + ) + conda.exe mambabuild "recipe" -m .ci_support\%CONFIG%.yaml --suppress-variables %EXTRA_CB_OPTIONS% displayName: Build recipe env: PYTHONUNBUFFERED: 1 diff --git a/.ci_support/migrations/harfbuzz7.yaml b/.ci_support/migrations/harfbuzz7.yaml deleted file mode 100644 index 4e7e1b19..00000000 --- a/.ci_support/migrations/harfbuzz7.yaml +++ /dev/null @@ -1,7 +0,0 @@ -__migrator: - build_number: 1 - kind: version - migration_number: 1 -harfbuzz: -- '7' -migrator_ts: 1681100035.1884027 diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml index b1f28cec..56e75c41 100644 --- a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml +++ b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.10.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +MACOSX_SDK_VERSION: +- '10.12' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____73_pypy.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____73_pypy.yaml index 6c250229..4e4c4a9e 100644 --- a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____73_pypy.yaml +++ b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____73_pypy.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +MACOSX_SDK_VERSION: +- '10.12' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml index 93ac0e50..f3b03137 100644 --- a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml +++ b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.8.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +MACOSX_SDK_VERSION: +- '10.12' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml index 857f4926..bb3c80e2 100644 --- a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml +++ b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____73_pypy.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +MACOSX_SDK_VERSION: +- '10.12' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml index f1388036..0e9ad75b 100644 --- a/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml +++ b/.ci_support/osx_64_libprotobuf3.21numpy1.21python3.9.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +MACOSX_SDK_VERSION: +- '10.12' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml index b1e51657..53662eb8 100644 --- a/.ci_support/osx_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml +++ b/.ci_support/osx_64_libprotobuf3.21numpy1.23python3.11.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +MACOSX_SDK_VERSION: +- '10.12' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml index a16aa7b7..8e896c16 100644 --- a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml +++ b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.10.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +MACOSX_SDK_VERSION: +- '10.12' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml index 43f04215..cfec7714 100644 --- a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml +++ b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____73_pypy.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +MACOSX_SDK_VERSION: +- '10.12' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml index 3e5498ca..c4e1b41f 100644 --- a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml +++ b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.8.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +MACOSX_SDK_VERSION: +- '10.12' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml index 1513c092..d9041e0c 100644 --- a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml +++ b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____73_pypy.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +MACOSX_SDK_VERSION: +- '10.12' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml index d6cde728..14ba32eb 100644 --- a/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml +++ b/.ci_support/osx_64_libprotobuf4.23.3numpy1.21python3.9.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +MACOSX_SDK_VERSION: +- '10.12' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml b/.ci_support/osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml index 94d8bd90..544449c7 100644 --- a/.ci_support/osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml +++ b/.ci_support/osx_64_libprotobuf4.23.3numpy1.23python3.11.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +MACOSX_SDK_VERSION: +- '10.12' c_compiler: - clang c_compiler_version: diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 6e7d899b..ede0ea35 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @h-vetinari @hajapy @hmaarrfk @jakirkham @msarahan @ocefpaf @patricksnape @xhochy @zym1010 \ No newline at end of file +* @h-vetinari @hajapy @hmaarrfk @ilya-lavrenov @jakirkham @msarahan @ocefpaf @patricksnape @xhochy @zym1010 \ No newline at end of file diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh index bb00584b..3969edf3 100755 --- a/.scripts/run_osx_build.sh +++ b/.scripts/run_osx_build.sh @@ -55,11 +55,6 @@ source run_conda_forge_build_setup echo -e "\n\nMaking the build clobber file" make_build_number ./ ./recipe ./.ci_support/${CONFIG}.yaml -if [[ "${HOST_PLATFORM}" != "${BUILD_PLATFORM}" ]]; then - EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --no-test" -fi - - if [[ -f LICENSE.txt ]]; then cp LICENSE.txt "recipe/recipe-scripts-license.txt" fi @@ -75,6 +70,11 @@ if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then # Drop into an interactive shell /bin/bash else + + if [[ "${HOST_PLATFORM}" != "${BUILD_PLATFORM}" ]]; then + EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --no-test" + fi + conda mambabuild ./recipe -m ./.ci_support/${CONFIG}.yaml \ --suppress-variables ${EXTRA_CB_OPTIONS:-} \ --clobber-file ./.ci_support/clobber_${CONFIG}.yaml diff --git a/README.md b/README.md index dd7d1112..cd958c2f 100644 --- a/README.md +++ b/README.md @@ -640,6 +640,7 @@ Feedstock Maintainers * [@h-vetinari](https://github.com/h-vetinari/) * [@hajapy](https://github.com/hajapy/) * [@hmaarrfk](https://github.com/hmaarrfk/) +* [@ilya-lavrenov](https://github.com/ilya-lavrenov/) * [@jakirkham](https://github.com/jakirkham/) * [@msarahan](https://github.com/msarahan/) * [@ocefpaf](https://github.com/ocefpaf/) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 27492370..41ff5133 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -38,8 +38,6 @@ source: - patches_opencv/0002-delete-lines-that-download-opencv.patch - patches_opencv/0003-find-pkgconfig-on-windows.patch - patches_opencv/0004-fix-detection-for-protobuf-23.x.patch - # reverted https://github.com/opencv/opencv/pull/23394 since does not work for macOS 10.9 x86_64 - - patches_opencv/0005-revert-cocoa-wheel-scroll.patch # [osx and x86_64] - url: https://github.com/opencv/opencv_contrib/archive/{{ version }}.tar.gz fn: opencv_contrib-{{ version }}.tar.gz sha256: b4aef0f25a22edcd7305df830fa926ca304ea9db65de6ccd02f6cfa5f3357dbb diff --git a/recipe/patches_opencv/0005-revert-cocoa-wheel-scroll.patch b/recipe/patches_opencv/0005-revert-cocoa-wheel-scroll.patch deleted file mode 100644 index d104c77a..00000000 --- a/recipe/patches_opencv/0005-revert-cocoa-wheel-scroll.patch +++ /dev/null @@ -1,54 +0,0 @@ -diff --git a/modules/highgui/include/opencv2/highgui.hpp b/modules/highgui/include/opencv2/highgui.hpp -index 71c0cf6e85..32f6dfb25d 100644 ---- a/modules/highgui/include/opencv2/highgui.hpp -+++ b/modules/highgui/include/opencv2/highgui.hpp -@@ -504,7 +504,7 @@ left scrolling, respectively. - - @note - --Mouse-wheel events are currently supported only on Windows and Cocoa -+Mouse-wheel events are currently supported only on Windows. - - @param flags The mouse callback flags parameter. - */ -diff --git a/modules/highgui/src/window_cocoa.mm b/modules/highgui/src/window_cocoa.mm -index 86f38d0ae8..2f2ba43149 100644 ---- a/modules/highgui/src/window_cocoa.mm -+++ b/modules/highgui/src/window_cocoa.mm -@@ -899,22 +899,8 @@ - (void)cvSendMouseEvent:(NSEvent *)event type:(int)type flags:(int)flags { - mp.y *= (imageSize.height / std::max(viewSize.height, 1.)); - mp.x *= (imageSize.width / std::max(viewSize.width, 1.)); - -- if( [event type] == NSEventTypeScrollWheel ) { -- if( event.hasPreciseScrollingDeltas ) { -- mp.x = int(event.scrollingDeltaX); -- mp.y = int(event.scrollingDeltaY); -- } else { -- mp.x = int(event.scrollingDeltaX / 0.100006); -- mp.y = int(event.scrollingDeltaY / 0.100006); -- } -- if( mp.x && !mp.y && CV_EVENT_MOUSEWHEEL == type ) { -- type = CV_EVENT_MOUSEHWHEEL; -- } -- mouseCallback(type, mp.x, mp.y, flags, mouseParam); -- } else if( mp.x >= 0 && mp.y >= 0 && mp.x < imageSize.width && mp.y < imageSize.height ) { -- mouseCallback(type, mp.x, mp.y, flags, mouseParam); -- } -- -+ if( mp.x >= 0 && mp.y >= 0 && mp.x < imageSize.width && mp.y < imageSize.height ) -+ mouseCallback(type, mp.x, mp.y, flags, mouseParam); - } - - - (void)cvMouseEvent:(NSEvent *)event { -@@ -937,11 +923,6 @@ - (void)cvMouseEvent:(NSEvent *)event { - if([event type] == NSLeftMouseDragged) {[self cvSendMouseEvent:event type:CV_EVENT_MOUSEMOVE flags:flags | CV_EVENT_FLAG_LBUTTON];} - if([event type] == NSRightMouseDragged) {[self cvSendMouseEvent:event type:CV_EVENT_MOUSEMOVE flags:flags | CV_EVENT_FLAG_RBUTTON];} - if([event type] == NSOtherMouseDragged) {[self cvSendMouseEvent:event type:CV_EVENT_MOUSEMOVE flags:flags | CV_EVENT_FLAG_MBUTTON];} -- if([event type] == NSEventTypeScrollWheel) {[self cvSendMouseEvent:event type:CV_EVENT_MOUSEWHEEL flags:flags ];} --} -- ---(void)scrollWheel:(NSEvent *)theEvent { -- [self cvMouseEvent:theEvent]; - } - - (void)keyDown:(NSEvent *)theEvent { - //cout << "keyDown" << endl; From 353bf43181d6ba530d731b9fef05adfa522da0c0 Mon Sep 17 00:00:00 2001 From: Ilya Lavrenov Date: Sat, 22 Jul 2023 11:06:59 +0400 Subject: [PATCH 6/7] Update recipe/meta.yaml removed new maintainers --- recipe/meta.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 41ff5133..a118905a 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -282,4 +282,3 @@ extra: - hajapy - ocefpaf - hmaarrfk - - ilya-lavrenov From d022f37c99534afa764b4c8486b89290354946e0 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Sat, 22 Jul 2023 07:54:49 +0000 Subject: [PATCH 7/7] MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.0, and conda-forge-pinning 2023.07.21.17.52.19 --- .github/CODEOWNERS | 2 +- README.md | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index ede0ea35..6e7d899b 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @h-vetinari @hajapy @hmaarrfk @ilya-lavrenov @jakirkham @msarahan @ocefpaf @patricksnape @xhochy @zym1010 \ No newline at end of file +* @h-vetinari @hajapy @hmaarrfk @jakirkham @msarahan @ocefpaf @patricksnape @xhochy @zym1010 \ No newline at end of file diff --git a/README.md b/README.md index cd958c2f..dd7d1112 100644 --- a/README.md +++ b/README.md @@ -640,7 +640,6 @@ Feedstock Maintainers * [@h-vetinari](https://github.com/h-vetinari/) * [@hajapy](https://github.com/hajapy/) * [@hmaarrfk](https://github.com/hmaarrfk/) -* [@ilya-lavrenov](https://github.com/ilya-lavrenov/) * [@jakirkham](https://github.com/jakirkham/) * [@msarahan](https://github.com/msarahan/) * [@ocefpaf](https://github.com/ocefpaf/)