From ce3276e3a57b7e3d348d767a9e11cb71dca2ea0a Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Fri, 18 Nov 2022 03:21:48 +0100 Subject: [PATCH 01/22] Add a libgdal-arrow-parquet package which contains the ogr_Arrow.so/dylib/dll and ogr_Parquet.so/dylib/dll plugins The libgdal-arrow-parquet build reuses the same build directory as libgdal, hence we just to have to turn on the required dependency and drivers in the build_arrow_parquet.sh/bat scripts. Fixes #628 --- ...e-that-ArrowLayer-destructor-is-avai.patch | 25 ++++++ recipe/bld.bat | 6 ++ recipe/build.sh | 5 ++ recipe/build_arrow_parquet.bat | 22 +++++ recipe/build_arrow_parquet.sh | 20 +++++ recipe/install_python.bat | 3 + recipe/install_python.sh | 4 + recipe/meta.yaml | 85 +++++++++++++++++++ recipe/test_arrow_parquet.bat | 8 ++ recipe/test_arrow_parquet.sh | 12 +++ 10 files changed, 190 insertions(+) create mode 100644 recipe/0002-Parquet-make-sure-that-ArrowLayer-destructor-is-avai.patch create mode 100644 recipe/build_arrow_parquet.bat create mode 100644 recipe/build_arrow_parquet.sh create mode 100644 recipe/test_arrow_parquet.bat create mode 100644 recipe/test_arrow_parquet.sh diff --git a/recipe/0002-Parquet-make-sure-that-ArrowLayer-destructor-is-avai.patch b/recipe/0002-Parquet-make-sure-that-ArrowLayer-destructor-is-avai.patch new file mode 100644 index 00000000..bc299ca1 --- /dev/null +++ b/recipe/0002-Parquet-make-sure-that-ArrowLayer-destructor-is-avai.patch @@ -0,0 +1,25 @@ +From eee1b439437788e9ecb65b600b8cd33d2012be32 Mon Sep 17 00:00:00 2001 +From: Even Rouault +Date: Fri, 18 Nov 2022 02:09:18 +0100 +Subject: [PATCH] Parquet: make sure that ArrowLayer destructor is available + (for plugin) + +--- + ogr/ogrsf_frmts/parquet/ogrparquetdriver.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/ogr/ogrsf_frmts/parquet/ogrparquetdriver.cpp b/ogr/ogrsf_frmts/parquet/ogrparquetdriver.cpp +index ff112586ed..3303f999f4 100644 +--- a/ogr/ogrsf_frmts/parquet/ogrparquetdriver.cpp ++++ b/ogr/ogrsf_frmts/parquet/ogrparquetdriver.cpp +@@ -35,6 +35,7 @@ + #include "../arrow_common/ograrrowrandomaccessfile.h" + #include "../arrow_common/ograrrowwritablefile.h" + #include "../arrow_common/ograrrowdataset.hpp" ++#include "../arrow_common/ograrrowlayer.hpp" // for the destructor + + /************************************************************************/ + /* Identify() */ +-- +2.25.1 + diff --git a/recipe/bld.bat b/recipe/bld.bat index 8549daf3..fe14cb33 100644 --- a/recipe/bld.bat +++ b/recipe/bld.bat @@ -9,6 +9,9 @@ if %vc% GTR 9 set MSVC_VER=1900 if %vc% LEQ 9 set MSVC_TS_VER=90 if %vc% GTR 9 set MSVC_TS_VER=140 +REM Make sure to disable Arrow/Parquet dependencies for now, so they are only +REM used in build_arrow_parquet + cmake -G "Ninja" ^ "%CMAKE_ARGS%" ^ -DMSVC_VERSION="%MSVC_VER%" ^ @@ -25,6 +28,9 @@ cmake -G "Ninja" ^ -DKEA_LIBRARY:PATH="%LIBRARY_LIB%\libkea.lib" ^ -DGDAL_USE_MYSQL:BOOL=OFF ^ -DGDAL_USE_MSSQL_ODBC:BOOL=OFF ^ + -DGDAL_USE_PARQUET=OFF ^ + -DGDAL_USE_ARROW=OFF ^ + -DGDAL_USE_ARROWDATASET=OFF ^ "%SRC_DIR%" if errorlevel 1 exit /b 1 diff --git a/recipe/build.sh b/recipe/build.sh index e1c8ff3d..ae4c512f 100644 --- a/recipe/build.sh +++ b/recipe/build.sh @@ -10,6 +10,8 @@ export CXXFLAGS="${CXXFLAGS} -std=c++17 -D_LIBCPP_DISABLE_AVAILABILITY" mkdir build cd build +# Make sure to disable Arrow/Parquet dependencies for now, so they are only +# used in build_arrow_parquet cmake -G "Unix Makefiles" \ ${CMAKE_ARGS} \ -DCMAKE_BUILD_TYPE=Release \ @@ -17,6 +19,9 @@ cmake -G "Unix Makefiles" \ -DCMAKE_INSTALL_PREFIX=$PREFIX \ -DCMAKE_INSTALL_LIBDIR=lib \ -DBUILD_SHARED_LIBS=ON \ + -DGDAL_USE_PARQUET=OFF \ + -DGDAL_USE_ARROW=OFF \ + -DGDAL_USE_ARROWDATASET=OFF \ -DBUILD_PYTHON_BINDINGS:BOOL=OFF \ -DBUILD_JAVA_BINDINGS:BOOL=OFF \ -DBUILD_CSHARP_BINDINGS:BOOL=OFF \ diff --git a/recipe/build_arrow_parquet.bat b/recipe/build_arrow_parquet.bat new file mode 100644 index 00000000..590d262b --- /dev/null +++ b/recipe/build_arrow_parquet.bat @@ -0,0 +1,22 @@ +cd build +if errorlevel 1 exit 1 + +REM We reuse the same build directory as libgdal, so we just to have to +REM turn on the required dependency and drivers +cmake -DBUILD_PYTHON_BINDINGS:BOOL=OFF ^ + -DGDAL_USE_PARQUET=ON ^ + -DGDAL_USE_ARROW=ON ^ + -DGDAL_USE_ARROWDATASET=ON ^ + -DOGR_ENABLE_DRIVER_ARROW=ON ^ + -DOGR_ENABLE_DRIVER_ARROW_PLUGIN=ON ^ + -DOGR_ENABLE_DRIVER_PARQUET=ON ^ + -DOGR_ENABLE_DRIVER_PARQUET_PLUGIN=ON ^ + "%SRC_DIR%" + +if errorlevel 1 exit /b 1 + +cmake --build . -j %CPU_COUNT% --verbose --config Release +if errorlevel 1 exit /b 1 + +cmake --build . --target install --config Release +if errorlevel 1 exit /b 1 diff --git a/recipe/build_arrow_parquet.sh b/recipe/build_arrow_parquet.sh new file mode 100644 index 00000000..e61c8cc9 --- /dev/null +++ b/recipe/build_arrow_parquet.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +set -ex # Abort on error. + +cd build + +# We reuse the same build directory as libgdal, so we just to have to +# turn on the required dependency and drivers +cmake -DBUILD_PYTHON_BINDINGS:BOOL=OFF \ + -DGDAL_USE_PARQUET=ON \ + -DGDAL_USE_ARROW=ON \ + -DGDAL_USE_ARROWDATASET=ON \ + -DOGR_ENABLE_DRIVER_ARROW=ON \ + -DOGR_ENABLE_DRIVER_ARROW_PLUGIN=ON \ + -DOGR_ENABLE_DRIVER_PARQUET=ON \ + -DOGR_ENABLE_DRIVER_PARQUET_PLUGIN=ON \ + ${SRC_DIR} + +cmake --build . -j ${CPU_COUNT} --config Release +cmake --build . --target install diff --git a/recipe/install_python.bat b/recipe/install_python.bat index b187f1e0..57f36d29 100644 --- a/recipe/install_python.bat +++ b/recipe/install_python.bat @@ -6,6 +6,9 @@ rd /s /q swig\python cmake -DPython_EXECUTABLE="%PYTHON%" ^ -DGDAL_PYTHON_INSTALL_PREFIX:PATH="%STDLIB_DIR%\.." ^ -DBUILD_PYTHON_BINDINGS:BOOL=ON ^ + -DGDAL_USE_EXTERNAL_LIBS=OFF ^ + -DGDAL_BUILD_OPTIONAL_DRIVERS:BOOL=OFF ^ + -DOGR_BUILD_OPTIONAL_DRIVERS:BOOL=OFF ^ "%SRC_DIR%" if errorlevel 1 exit /b 1 diff --git a/recipe/install_python.sh b/recipe/install_python.sh index 862e8424..122e900e 100644 --- a/recipe/install_python.sh +++ b/recipe/install_python.sh @@ -10,6 +10,9 @@ rm -rf swig/python cmake -DPython_EXECUTABLE="$PYTHON" \ -DBUILD_PYTHON_BINDINGS:BOOL=ON \ + -DGDAL_USE_EXTERNAL_LIBS=OFF \ + -DGDAL_BUILD_OPTIONAL_DRIVERS:BOOL=OFF \ + -DOGR_BUILD_OPTIONAL_DRIVERS:BOOL=OFF \ ${SRC_DIR} || (cat CMakeFiles/CMakeError.log;false) cd swig/python @@ -23,4 +26,5 @@ build-backend = "setuptools.build_meta" EOF $PYTHON setup.py build_ext + $PYTHON -m pip install --no-deps --ignore-installed . diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 0dc76709..d47517a4 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -9,6 +9,7 @@ source: sha256: f7afa4aa8d32d0799e011a9f573c6a67e9471f78e70d3d0d0b45b45c8c0c1a94 patches: - 0001-Improve-numpy-fixing.patch + - 0002-Parquet-make-sure-that-ArrowLayer-destructor-is-avai.patch build: number: 10 @@ -54,6 +55,7 @@ requirements: - lz4-c - openjpeg - openssl + - parquet-cpp - pcre2 - poppler - postgresql @@ -152,6 +154,89 @@ outputs: license: MIT license_file: LICENSE.TXT + - name: libgdal-arrow-parquet + script: build_arrow_parquet.sh # [unix] + script: build_arrow_parquet.bat # [win] + requirements: + build: + - cmake + # ranlib used at install time + - {{ compiler('c') }} + # libstdc++ is needed in requirements/run + - {{ compiler('cxx') }} + - pkg-config # [not win] + - make # [unix] + - ninja # [win] + - sysroot_linux-64 2.17 # [linux64] + host: + - {{ pin_subpackage('libgdal', exact=True) }} + - blosc + - cfitsio + - curl + - expat + - freexl + - geos + - geotiff + - giflib # [not win] + - hdf4 + - hdf5 + - icu + - jpeg + - json-c # [not win] + - kealib + - libkml + - libnetcdf + - libpng + - libpq + - libspatialite + - libtiff + - libuuid # [linux] + - libwebp-base + - libxml2 + - openjpeg + - openssl + - parquet-cpp + - pcre2 + - poppler + - postgresql + - proj + - qhull + - sqlite + - tiledb + - xerces-c + - xz + - zlib + - zstd + run: + - {{ pin_subpackage('libgdal', exact=True) }} + - arrow-cpp + - cfitsio + - geotiff + - giflib # [not win] + - json-c # [not win] + - libpq + - libspatialite + - libuuid # [linux] + - libwebp-base + - parquet-cpp + - poppler + - postgresql + - proj + - tiledb + - xz + - zstd + test: + files: + - test_arrow_parquet.sh # [unix] + - test_arrow_parquet.bat # [win] + commands: + - sh test_arrow_parquet.sh # [unix] + - test_arrow_parquet.bat # [win] + about: + summary: Arrow and Parquet drivers for the Geospatial Data Abstraction Library (GDAL) + license: MIT + license_file: LICENSE.TXT + - name: gdal script: install_python.sh # [unix] script: install_python.bat # [win] diff --git a/recipe/test_arrow_parquet.bat b/recipe/test_arrow_parquet.bat new file mode 100644 index 00000000..94dafc13 --- /dev/null +++ b/recipe/test_arrow_parquet.bat @@ -0,0 +1,8 @@ +echo %GDAL_DRIVER_PATH% +dir %GDAL_DRIVER_PATH% + +ogrinfo --format Arrow +if errorlevel 1 exit 1 + +ogrinfo --format Parquet +if errorlevel 1 exit 1 diff --git a/recipe/test_arrow_parquet.sh b/recipe/test_arrow_parquet.sh new file mode 100644 index 00000000..7fe267cd --- /dev/null +++ b/recipe/test_arrow_parquet.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# exit when any command fails +set -e +# print all commands +set -x + +test -f ${PREFIX}/lib/gdalplugins/ogr_Arrow${SHLIB_EXT} +test -f ${PREFIX}/lib/gdalplugins/ogr_Parquet${SHLIB_EXT} + +ogrinfo --format Arrow +ogrinfo --format Parquet From 416dae1b7c53b33ab5406e0a5074dfbe80ab38da Mon Sep 17 00:00:00 2001 From: akrherz Date: Sun, 4 Dec 2022 05:50:36 -0600 Subject: [PATCH 02/22] update depends s/parquet-cpp/arrow-cpp --- recipe/meta.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index d47517a4..dceae723 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,6 +26,7 @@ requirements: - {{ compiler('cxx') }} - sysroot_linux-64 2.17 # [linux64] host: + - arrow-cpp - blosc - cfitsio - expat @@ -55,7 +56,6 @@ requirements: - lz4-c - openjpeg - openssl - - parquet-cpp - pcre2 - poppler - postgresql @@ -170,6 +170,7 @@ outputs: - sysroot_linux-64 2.17 # [linux64] host: - {{ pin_subpackage('libgdal', exact=True) }} + - arrow-cpp - blosc - cfitsio - curl @@ -195,7 +196,6 @@ outputs: - libxml2 - openjpeg - openssl - - parquet-cpp - pcre2 - poppler - postgresql @@ -218,7 +218,6 @@ outputs: - libspatialite - libuuid # [linux] - libwebp-base - - parquet-cpp - poppler - postgresql - proj From 1bc4ddc9d9914fd7a55350719fe270674fe70c08 Mon Sep 17 00:00:00 2001 From: akrherz Date: Sun, 4 Dec 2022 05:54:06 -0600 Subject: [PATCH 03/22] bump build number --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index dceae723..2823b8cb 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -12,7 +12,7 @@ source: - 0002-Parquet-make-sure-that-ArrowLayer-destructor-is-avai.patch build: - number: 10 + number: 11 skip_compile_pyc: - "share/bash-completion/completions/*.py" From 3af0cd4a4ade9a2a1528ba9728a5c68cb492b3c3 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Sun, 4 Dec 2022 11:58:52 +0000 Subject: [PATCH 04/22] MNT: Re-rendered with conda-build 3.23.2, conda-smithy 3.22.0, and conda-forge-pinning 2022.12.02.15.22.41 --- .azure-pipelines/azure-pipelines-linux.yml | 96 +++++- .azure-pipelines/azure-pipelines-osx.yml | 52 ++- .azure-pipelines/azure-pipelines-win.yml | 26 +- ... linux_64_arrow_cpp6.0.2openssl1.1.1.yaml} | 4 + ...l => linux_64_arrow_cpp6.0.2openssl3.yaml} | 4 + .../linux_64_arrow_cpp7.0.1openssl1.1.1.yaml | 111 +++++++ .../linux_64_arrow_cpp7.0.1openssl3.yaml | 111 +++++++ .../linux_64_arrow_cpp8.0.1openssl1.1.1.yaml | 111 +++++++ .../linux_64_arrow_cpp8.0.1openssl3.yaml | 111 +++++++ .../linux_64_arrow_cpp9.0.0openssl1.1.1.yaml | 111 +++++++ .../linux_64_arrow_cpp9.0.0openssl3.yaml | 111 +++++++ ...x_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml} | 4 + ...linux_aarch64_arrow_cpp6.0.2openssl3.yaml} | 4 + ...ux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml | 115 +++++++ .../linux_aarch64_arrow_cpp7.0.1openssl3.yaml | 115 +++++++ ...ux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml | 115 +++++++ .../linux_aarch64_arrow_cpp8.0.1openssl3.yaml | 115 +++++++ ...ux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml | 115 +++++++ .../linux_aarch64_arrow_cpp9.0.0openssl3.yaml | 115 +++++++ ...x_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml} | 4 + ...linux_ppc64le_arrow_cpp6.0.2openssl3.yaml} | 4 + ...ux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml | 111 +++++++ .../linux_ppc64le_arrow_cpp7.0.1openssl3.yaml | 111 +++++++ ...ux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml | 111 +++++++ .../linux_ppc64le_arrow_cpp8.0.1openssl3.yaml | 111 +++++++ ...ux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml | 111 +++++++ .../linux_ppc64le_arrow_cpp9.0.0openssl3.yaml | 111 +++++++ .ci_support/migrations/kealib15.yaml | 7 - .ci_support/migrations/pcre21040.yaml | 7 - ...=> osx_64_arrow_cpp6.0.2openssl1.1.1.yaml} | 4 + ...aml => osx_64_arrow_cpp6.0.2openssl3.yaml} | 4 + .../osx_64_arrow_cpp7.0.1openssl1.1.1.yaml | 109 +++++++ .../osx_64_arrow_cpp7.0.1openssl3.yaml | 109 +++++++ .../osx_64_arrow_cpp8.0.1openssl1.1.1.yaml | 109 +++++++ .../osx_64_arrow_cpp8.0.1openssl3.yaml | 109 +++++++ .../osx_64_arrow_cpp9.0.0openssl1.1.1.yaml | 109 +++++++ .../osx_64_arrow_cpp9.0.0openssl3.yaml | 109 +++++++ ...osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml} | 4 + ... => osx_arm64_arrow_cpp6.0.2openssl3.yaml} | 4 + .../osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml | 109 +++++++ .../osx_arm64_arrow_cpp7.0.1openssl3.yaml | 109 +++++++ .../osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml | 109 +++++++ .../osx_arm64_arrow_cpp8.0.1openssl3.yaml | 109 +++++++ .../osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml | 109 +++++++ .../osx_arm64_arrow_cpp9.0.0openssl3.yaml | 109 +++++++ ...=> win_64_arrow_cpp6.0.2openssl1.1.1.yaml} | 4 + ...aml => win_64_arrow_cpp6.0.2openssl3.yaml} | 4 + .../win_64_arrow_cpp7.0.1openssl1.1.1.yaml | 95 ++++++ .../win_64_arrow_cpp7.0.1openssl3.yaml | 95 ++++++ .../win_64_arrow_cpp8.0.1openssl1.1.1.yaml | 95 ++++++ .../win_64_arrow_cpp8.0.1openssl3.yaml | 95 ++++++ .../win_64_arrow_cpp9.0.0openssl1.1.1.yaml | 95 ++++++ .../win_64_arrow_cpp9.0.0openssl3.yaml | 95 ++++++ README.md | 307 ++++++++++++++++-- 54 files changed, 4378 insertions(+), 65 deletions(-) rename .ci_support/{linux_64_openssl1.1.1.yaml => linux_64_arrow_cpp6.0.2openssl1.1.1.yaml} (97%) rename .ci_support/{linux_64_openssl3.yaml => linux_64_arrow_cpp6.0.2openssl3.yaml} (97%) create mode 100644 .ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml create mode 100644 .ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml create mode 100644 .ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml create mode 100644 .ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml create mode 100644 .ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml create mode 100644 .ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{linux_aarch64_openssl1.1.1.yaml => linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml} (97%) rename .ci_support/{linux_aarch64_openssl3.yaml => linux_aarch64_arrow_cpp6.0.2openssl3.yaml} (97%) create mode 100644 .ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml create mode 100644 .ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml create mode 100644 .ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml create mode 100644 .ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml create mode 100644 .ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml create mode 100644 .ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{linux_ppc64le_openssl1.1.1.yaml => linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml} (97%) rename .ci_support/{linux_ppc64le_openssl3.yaml => linux_ppc64le_arrow_cpp6.0.2openssl3.yaml} (97%) create mode 100644 .ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml create mode 100644 .ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml create mode 100644 .ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml create mode 100644 .ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml create mode 100644 .ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml create mode 100644 .ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml delete mode 100644 .ci_support/migrations/kealib15.yaml delete mode 100644 .ci_support/migrations/pcre21040.yaml rename .ci_support/{osx_64_openssl1.1.1.yaml => osx_64_arrow_cpp6.0.2openssl1.1.1.yaml} (97%) rename .ci_support/{osx_64_openssl3.yaml => osx_64_arrow_cpp6.0.2openssl3.yaml} (97%) create mode 100644 .ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml create mode 100644 .ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml create mode 100644 .ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml create mode 100644 .ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml create mode 100644 .ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml create mode 100644 .ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{osx_arm64_openssl1.1.1.yaml => osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml} (97%) rename .ci_support/{osx_arm64_openssl3.yaml => osx_arm64_arrow_cpp6.0.2openssl3.yaml} (97%) create mode 100644 .ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml create mode 100644 .ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml create mode 100644 .ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml create mode 100644 .ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml create mode 100644 .ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml create mode 100644 .ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{win_64_openssl1.1.1.yaml => win_64_arrow_cpp6.0.2openssl1.1.1.yaml} (96%) rename .ci_support/{win_64_openssl3.yaml => win_64_arrow_cpp6.0.2openssl3.yaml} (96%) create mode 100644 .ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml create mode 100644 .ci_support/win_64_arrow_cpp7.0.1openssl3.yaml create mode 100644 .ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml create mode 100644 .ci_support/win_64_arrow_cpp8.0.1openssl3.yaml create mode 100644 .ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml create mode 100644 .ci_support/win_64_arrow_cpp9.0.0openssl3.yaml diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index fd96606e..6fabfc32 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -8,28 +8,100 @@ jobs: vmImage: ubuntu-latest strategy: matrix: - linux_64_openssl1.1.1: - CONFIG: linux_64_openssl1.1.1 + linux_64_arrow_cpp6.0.2openssl1.1.1: + CONFIG: linux_64_arrow_cpp6.0.2openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_openssl3: - CONFIG: linux_64_openssl3 + linux_64_arrow_cpp6.0.2openssl3: + CONFIG: linux_64_arrow_cpp6.0.2openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_openssl1.1.1: - CONFIG: linux_aarch64_openssl1.1.1 + linux_64_arrow_cpp7.0.1openssl1.1.1: + CONFIG: linux_64_arrow_cpp7.0.1openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_openssl3: - CONFIG: linux_aarch64_openssl3 + linux_64_arrow_cpp7.0.1openssl3: + CONFIG: linux_64_arrow_cpp7.0.1openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_openssl1.1.1: - CONFIG: linux_ppc64le_openssl1.1.1 + linux_64_arrow_cpp8.0.1openssl1.1.1: + CONFIG: linux_64_arrow_cpp8.0.1openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_openssl3: - CONFIG: linux_ppc64le_openssl3 + linux_64_arrow_cpp8.0.1openssl3: + CONFIG: linux_64_arrow_cpp8.0.1openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_arrow_cpp9.0.0openssl1.1.1: + CONFIG: linux_64_arrow_cpp9.0.0openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_arrow_cpp9.0.0openssl3: + CONFIG: linux_64_arrow_cpp9.0.0openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp6.0.2openssl1.1.1: + CONFIG: linux_aarch64_arrow_cpp6.0.2openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp6.0.2openssl3: + CONFIG: linux_aarch64_arrow_cpp6.0.2openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp7.0.1openssl1.1.1: + CONFIG: linux_aarch64_arrow_cpp7.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp7.0.1openssl3: + CONFIG: linux_aarch64_arrow_cpp7.0.1openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp8.0.1openssl1.1.1: + CONFIG: linux_aarch64_arrow_cpp8.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp8.0.1openssl3: + CONFIG: linux_aarch64_arrow_cpp8.0.1openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp9.0.0openssl1.1.1: + CONFIG: linux_aarch64_arrow_cpp9.0.0openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp9.0.0openssl3: + CONFIG: linux_aarch64_arrow_cpp9.0.0openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp6.0.2openssl1.1.1: + CONFIG: linux_ppc64le_arrow_cpp6.0.2openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp6.0.2openssl3: + CONFIG: linux_ppc64le_arrow_cpp6.0.2openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp7.0.1openssl1.1.1: + CONFIG: linux_ppc64le_arrow_cpp7.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp7.0.1openssl3: + CONFIG: linux_ppc64le_arrow_cpp7.0.1openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp8.0.1openssl1.1.1: + CONFIG: linux_ppc64le_arrow_cpp8.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp8.0.1openssl3: + CONFIG: linux_ppc64le_arrow_cpp8.0.1openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp9.0.0openssl1.1.1: + CONFIG: linux_ppc64le_arrow_cpp9.0.0openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp9.0.0openssl3: + CONFIG: linux_ppc64le_arrow_cpp9.0.0openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 timeoutInMinutes: 360 diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index 5fa9ba9c..d53fecb5 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -8,17 +8,53 @@ jobs: vmImage: macOS-11 strategy: matrix: - osx_64_openssl1.1.1: - CONFIG: osx_64_openssl1.1.1 + osx_64_arrow_cpp6.0.2openssl1.1.1: + CONFIG: osx_64_arrow_cpp6.0.2openssl1.1.1 UPLOAD_PACKAGES: 'True' - osx_64_openssl3: - CONFIG: osx_64_openssl3 + osx_64_arrow_cpp6.0.2openssl3: + CONFIG: osx_64_arrow_cpp6.0.2openssl3 UPLOAD_PACKAGES: 'True' - osx_arm64_openssl1.1.1: - CONFIG: osx_arm64_openssl1.1.1 + osx_64_arrow_cpp7.0.1openssl1.1.1: + CONFIG: osx_64_arrow_cpp7.0.1openssl1.1.1 UPLOAD_PACKAGES: 'True' - osx_arm64_openssl3: - CONFIG: osx_arm64_openssl3 + osx_64_arrow_cpp7.0.1openssl3: + CONFIG: osx_64_arrow_cpp7.0.1openssl3 + UPLOAD_PACKAGES: 'True' + osx_64_arrow_cpp8.0.1openssl1.1.1: + CONFIG: osx_64_arrow_cpp8.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_64_arrow_cpp8.0.1openssl3: + CONFIG: osx_64_arrow_cpp8.0.1openssl3 + UPLOAD_PACKAGES: 'True' + osx_64_arrow_cpp9.0.0openssl1.1.1: + CONFIG: osx_64_arrow_cpp9.0.0openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_64_arrow_cpp9.0.0openssl3: + CONFIG: osx_64_arrow_cpp9.0.0openssl3 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp6.0.2openssl1.1.1: + CONFIG: osx_arm64_arrow_cpp6.0.2openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp6.0.2openssl3: + CONFIG: osx_arm64_arrow_cpp6.0.2openssl3 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp7.0.1openssl1.1.1: + CONFIG: osx_arm64_arrow_cpp7.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp7.0.1openssl3: + CONFIG: osx_arm64_arrow_cpp7.0.1openssl3 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp8.0.1openssl1.1.1: + CONFIG: osx_arm64_arrow_cpp8.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp8.0.1openssl3: + CONFIG: osx_arm64_arrow_cpp8.0.1openssl3 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp9.0.0openssl1.1.1: + CONFIG: osx_arm64_arrow_cpp9.0.0openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp9.0.0openssl3: + CONFIG: osx_arm64_arrow_cpp9.0.0openssl3 UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 1fd23141..0af202a1 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,11 +8,29 @@ jobs: vmImage: windows-2019 strategy: matrix: - win_64_openssl1.1.1: - CONFIG: win_64_openssl1.1.1 + win_64_arrow_cpp6.0.2openssl1.1.1: + CONFIG: win_64_arrow_cpp6.0.2openssl1.1.1 UPLOAD_PACKAGES: 'True' - win_64_openssl3: - CONFIG: win_64_openssl3 + win_64_arrow_cpp6.0.2openssl3: + CONFIG: win_64_arrow_cpp6.0.2openssl3 + UPLOAD_PACKAGES: 'True' + win_64_arrow_cpp7.0.1openssl1.1.1: + CONFIG: win_64_arrow_cpp7.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + win_64_arrow_cpp7.0.1openssl3: + CONFIG: win_64_arrow_cpp7.0.1openssl3 + UPLOAD_PACKAGES: 'True' + win_64_arrow_cpp8.0.1openssl1.1.1: + CONFIG: win_64_arrow_cpp8.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + win_64_arrow_cpp8.0.1openssl3: + CONFIG: win_64_arrow_cpp8.0.1openssl3 + UPLOAD_PACKAGES: 'True' + win_64_arrow_cpp9.0.0openssl1.1.1: + CONFIG: win_64_arrow_cpp9.0.0openssl1.1.1 + UPLOAD_PACKAGES: 'True' + win_64_arrow_cpp9.0.0openssl3: + CONFIG: win_64_arrow_cpp9.0.0openssl3 UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 variables: diff --git a/.ci_support/linux_64_openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml similarity index 97% rename from .ci_support/linux_64_openssl1.1.1.yaml rename to .ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml index 49e540b3..1b479386 100644 --- a/.ci_support/linux_64_openssl1.1.1.yaml +++ b/.ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml @@ -1,3 +1,5 @@ +arrow_cpp: +- 6.0.2 c_compiler: - gcc c_compiler_version: @@ -10,6 +12,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_64_openssl3.yaml b/.ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml similarity index 97% rename from .ci_support/linux_64_openssl3.yaml rename to .ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml index 8fd01407..92f0fc38 100644 --- a/.ci_support/linux_64_openssl3.yaml +++ b/.ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml @@ -1,3 +1,5 @@ +arrow_cpp: +- 6.0.2 c_compiler: - gcc c_compiler_version: @@ -10,6 +12,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..3eea3664 --- /dev/null +++ b/.ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml @@ -0,0 +1,111 @@ +arrow_cpp: +- 7.0.1 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml new file mode 100644 index 00000000..ed16435b --- /dev/null +++ b/.ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml @@ -0,0 +1,111 @@ +arrow_cpp: +- 7.0.1 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..39abbee1 --- /dev/null +++ b/.ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml @@ -0,0 +1,111 @@ +arrow_cpp: +- 8.0.1 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml new file mode 100644 index 00000000..f49d4ff3 --- /dev/null +++ b/.ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml @@ -0,0 +1,111 @@ +arrow_cpp: +- 8.0.1 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml new file mode 100644 index 00000000..32d8de29 --- /dev/null +++ b/.ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml @@ -0,0 +1,111 @@ +arrow_cpp: +- 9.0.0 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml new file mode 100644 index 00000000..e76b4927 --- /dev/null +++ b/.ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml @@ -0,0 +1,111 @@ +arrow_cpp: +- 9.0.0 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml similarity index 97% rename from .ci_support/linux_aarch64_openssl1.1.1.yaml rename to .ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml index 10877b93..c56e62be 100644 --- a/.ci_support/linux_aarch64_openssl1.1.1.yaml +++ b/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml @@ -1,5 +1,7 @@ BUILD: - aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 6.0.2 c_compiler: - gcc c_compiler_version: @@ -14,6 +16,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_aarch64_openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml similarity index 97% rename from .ci_support/linux_aarch64_openssl3.yaml rename to .ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml index 03b7ee88..fa27fda4 100644 --- a/.ci_support/linux_aarch64_openssl3.yaml +++ b/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml @@ -1,5 +1,7 @@ BUILD: - aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 6.0.2 c_compiler: - gcc c_compiler_version: @@ -14,6 +16,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..e7e371ba --- /dev/null +++ b/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml @@ -0,0 +1,115 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 7.0.1 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml new file mode 100644 index 00000000..f370b455 --- /dev/null +++ b/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml @@ -0,0 +1,115 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 7.0.1 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..6b95cdc8 --- /dev/null +++ b/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml @@ -0,0 +1,115 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 8.0.1 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml new file mode 100644 index 00000000..c6a819ac --- /dev/null +++ b/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml @@ -0,0 +1,115 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 8.0.1 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml new file mode 100644 index 00000000..5706a63a --- /dev/null +++ b/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml @@ -0,0 +1,115 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 9.0.0 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml new file mode 100644 index 00000000..d8e34bc0 --- /dev/null +++ b/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml @@ -0,0 +1,115 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 9.0.0 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml similarity index 97% rename from .ci_support/linux_ppc64le_openssl1.1.1.yaml rename to .ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml index 406f4440..4c97698d 100644 --- a/.ci_support/linux_ppc64le_openssl1.1.1.yaml +++ b/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml @@ -1,3 +1,5 @@ +arrow_cpp: +- 6.0.2 c_compiler: - gcc c_compiler_version: @@ -10,6 +12,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_ppc64le_openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml similarity index 97% rename from .ci_support/linux_ppc64le_openssl3.yaml rename to .ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml index 95bb2717..c7295870 100644 --- a/.ci_support/linux_ppc64le_openssl3.yaml +++ b/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml @@ -1,3 +1,5 @@ +arrow_cpp: +- 6.0.2 c_compiler: - gcc c_compiler_version: @@ -10,6 +12,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..eb5e1f03 --- /dev/null +++ b/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml @@ -0,0 +1,111 @@ +arrow_cpp: +- 7.0.1 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml new file mode 100644 index 00000000..2039eb64 --- /dev/null +++ b/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml @@ -0,0 +1,111 @@ +arrow_cpp: +- 7.0.1 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..f427d0cf --- /dev/null +++ b/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml @@ -0,0 +1,111 @@ +arrow_cpp: +- 8.0.1 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml new file mode 100644 index 00000000..3241c376 --- /dev/null +++ b/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml @@ -0,0 +1,111 @@ +arrow_cpp: +- 8.0.1 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml new file mode 100644 index 00000000..e5c93838 --- /dev/null +++ b/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml @@ -0,0 +1,111 @@ +arrow_cpp: +- 9.0.0 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml new file mode 100644 index 00000000..55711f94 --- /dev/null +++ b/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml @@ -0,0 +1,111 @@ +arrow_cpp: +- 9.0.0 +c_compiler: +- gcc +c_compiler_version: +- '10' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '10' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/migrations/kealib15.yaml b/.ci_support/migrations/kealib15.yaml deleted file mode 100644 index 3943de0b..00000000 --- a/.ci_support/migrations/kealib15.yaml +++ /dev/null @@ -1,7 +0,0 @@ -__migrator: - build_number: 1 - kind: version - migration_number: 1 -kealib: -- '1.5' -migrator_ts: 1669254312.60193 diff --git a/.ci_support/migrations/pcre21040.yaml b/.ci_support/migrations/pcre21040.yaml deleted file mode 100644 index 598494ec..00000000 --- a/.ci_support/migrations/pcre21040.yaml +++ /dev/null @@ -1,7 +0,0 @@ -__migrator: - build_number: 1 - kind: version - migration_number: 1 -migrator_ts: 1665569774.2519386 -pcre2: -- '10.40' diff --git a/.ci_support/osx_64_openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml similarity index 97% rename from .ci_support/osx_64_openssl1.1.1.yaml rename to .ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml index f3b64a31..02381c64 100644 --- a/.ci_support/osx_64_openssl1.1.1.yaml +++ b/.ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +arrow_cpp: +- 6.0.2 c_compiler: - clang c_compiler_version: @@ -10,6 +12,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_64_openssl3.yaml b/.ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml similarity index 97% rename from .ci_support/osx_64_openssl3.yaml rename to .ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml index 9070006b..7788fa63 100644 --- a/.ci_support/osx_64_openssl3.yaml +++ b/.ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +arrow_cpp: +- 6.0.2 c_compiler: - clang c_compiler_version: @@ -10,6 +12,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..908f638a --- /dev/null +++ b/.ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml @@ -0,0 +1,109 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +arrow_cpp: +- 7.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml new file mode 100644 index 00000000..ef6038db --- /dev/null +++ b/.ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml @@ -0,0 +1,109 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +arrow_cpp: +- 7.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..aea04d7e --- /dev/null +++ b/.ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml @@ -0,0 +1,109 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +arrow_cpp: +- 8.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml new file mode 100644 index 00000000..fa2efd89 --- /dev/null +++ b/.ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml @@ -0,0 +1,109 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +arrow_cpp: +- 8.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml new file mode 100644 index 00000000..66c5b360 --- /dev/null +++ b/.ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml @@ -0,0 +1,109 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +arrow_cpp: +- 9.0.0 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml new file mode 100644 index 00000000..1db1aeca --- /dev/null +++ b/.ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml @@ -0,0 +1,109 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +arrow_cpp: +- 9.0.0 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml similarity index 97% rename from .ci_support/osx_arm64_openssl1.1.1.yaml rename to .ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml index a8815257..e2464328 100644 --- a/.ci_support/osx_arm64_openssl1.1.1.yaml +++ b/.ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +arrow_cpp: +- 6.0.2 c_compiler: - clang c_compiler_version: @@ -10,6 +12,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_arm64_openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml similarity index 97% rename from .ci_support/osx_arm64_openssl3.yaml rename to .ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml index cd140420..052869e5 100644 --- a/.ci_support/osx_arm64_openssl3.yaml +++ b/.ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +arrow_cpp: +- 6.0.2 c_compiler: - clang c_compiler_version: @@ -10,6 +12,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..7dbb7e47 --- /dev/null +++ b/.ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml @@ -0,0 +1,109 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +arrow_cpp: +- 7.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml new file mode 100644 index 00000000..1cf507f3 --- /dev/null +++ b/.ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml @@ -0,0 +1,109 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +arrow_cpp: +- 7.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..c47d26bf --- /dev/null +++ b/.ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml @@ -0,0 +1,109 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +arrow_cpp: +- 8.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml new file mode 100644 index 00000000..caaa3899 --- /dev/null +++ b/.ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml @@ -0,0 +1,109 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +arrow_cpp: +- 8.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml new file mode 100644 index 00000000..b67a1989 --- /dev/null +++ b/.ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml @@ -0,0 +1,109 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +arrow_cpp: +- 9.0.0 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml new file mode 100644 index 00000000..22f13033 --- /dev/null +++ b/.ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml @@ -0,0 +1,109 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +arrow_cpp: +- 9.0.0 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml similarity index 96% rename from .ci_support/win_64_openssl1.1.1.yaml rename to .ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml index 54384878..72d7fbfa 100644 --- a/.ci_support/win_64_openssl1.1.1.yaml +++ b/.ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml @@ -1,3 +1,5 @@ +arrow_cpp: +- 6.0.2 c_compiler: - vs2019 cfitsio: @@ -6,6 +8,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - vs2019 expat: diff --git a/.ci_support/win_64_openssl3.yaml b/.ci_support/win_64_arrow_cpp6.0.2openssl3.yaml similarity index 96% rename from .ci_support/win_64_openssl3.yaml rename to .ci_support/win_64_arrow_cpp6.0.2openssl3.yaml index 76de823a..d02f7f41 100644 --- a/.ci_support/win_64_openssl3.yaml +++ b/.ci_support/win_64_arrow_cpp6.0.2openssl3.yaml @@ -1,3 +1,5 @@ +arrow_cpp: +- 6.0.2 c_compiler: - vs2019 cfitsio: @@ -6,6 +8,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - vs2019 expat: diff --git a/.ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..aaf26cf7 --- /dev/null +++ b/.ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml @@ -0,0 +1,95 @@ +arrow_cpp: +- 7.0.1 +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/win_64_arrow_cpp7.0.1openssl3.yaml new file mode 100644 index 00000000..972c819f --- /dev/null +++ b/.ci_support/win_64_arrow_cpp7.0.1openssl3.yaml @@ -0,0 +1,95 @@ +arrow_cpp: +- 7.0.1 +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..5a1b4648 --- /dev/null +++ b/.ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml @@ -0,0 +1,95 @@ +arrow_cpp: +- 8.0.1 +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/win_64_arrow_cpp8.0.1openssl3.yaml new file mode 100644 index 00000000..f8c25c9f --- /dev/null +++ b/.ci_support/win_64_arrow_cpp8.0.1openssl3.yaml @@ -0,0 +1,95 @@ +arrow_cpp: +- 8.0.1 +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml new file mode 100644 index 00000000..dbb8e3d6 --- /dev/null +++ b/.ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml @@ -0,0 +1,95 @@ +arrow_cpp: +- 9.0.0 +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/win_64_arrow_cpp9.0.0openssl3.yaml new file mode 100644 index 00000000..9b681c70 --- /dev/null +++ b/.ci_support/win_64_arrow_cpp9.0.0openssl3.yaml @@ -0,0 +1,95 @@ +arrow_cpp: +- 9.0.0 +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/README.md b/README.md index b9c273a4..ef1db0b3 100644 --- a/README.md +++ b/README.md @@ -27,87 +27,339 @@ Current build status - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -125,6 +377,7 @@ Current release info | --- | --- | --- | --- | | [![Conda Recipe](https://img.shields.io/badge/recipe-gdal-green.svg)](https://anaconda.org/conda-forge/gdal) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/gdal.svg)](https://anaconda.org/conda-forge/gdal) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/gdal.svg)](https://anaconda.org/conda-forge/gdal) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/gdal.svg)](https://anaconda.org/conda-forge/gdal) | | [![Conda Recipe](https://img.shields.io/badge/recipe-libgdal-green.svg)](https://anaconda.org/conda-forge/libgdal) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/libgdal.svg)](https://anaconda.org/conda-forge/libgdal) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/libgdal.svg)](https://anaconda.org/conda-forge/libgdal) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/libgdal.svg)](https://anaconda.org/conda-forge/libgdal) | +| [![Conda Recipe](https://img.shields.io/badge/recipe-libgdal--arrow--parquet-green.svg)](https://anaconda.org/conda-forge/libgdal-arrow-parquet) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/libgdal-arrow-parquet.svg)](https://anaconda.org/conda-forge/libgdal-arrow-parquet) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/libgdal-arrow-parquet.svg)](https://anaconda.org/conda-forge/libgdal-arrow-parquet) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/libgdal-arrow-parquet.svg)](https://anaconda.org/conda-forge/libgdal-arrow-parquet) | Installing gdal-split ===================== @@ -136,16 +389,16 @@ conda config --add channels conda-forge conda config --set channel_priority strict ``` -Once the `conda-forge` channel has been enabled, `gdal, libgdal` can be installed with `conda`: +Once the `conda-forge` channel has been enabled, `gdal, libgdal, libgdal-arrow-parquet` can be installed with `conda`: ``` -conda install gdal libgdal +conda install gdal libgdal libgdal-arrow-parquet ``` or with `mamba`: ``` -mamba install gdal libgdal +mamba install gdal libgdal libgdal-arrow-parquet ``` It is possible to list all of the versions of `gdal` available on your platform with `conda`: From 78f886fed99b0ad51501b6a4f94b39fb0ce4731a Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Sun, 4 Dec 2022 16:13:07 +0100 Subject: [PATCH 05/22] meta.yaml: add arrow-cpp >=10.0 constraint --- recipe/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 2823b8cb..d77fd6a9 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,7 +26,7 @@ requirements: - {{ compiler('cxx') }} - sysroot_linux-64 2.17 # [linux64] host: - - arrow-cpp + - arrow-cpp >=10.0 - blosc - cfitsio - expat @@ -170,7 +170,7 @@ outputs: - sysroot_linux-64 2.17 # [linux64] host: - {{ pin_subpackage('libgdal', exact=True) }} - - arrow-cpp + - arrow-cpp >=10.0 - blosc - cfitsio - curl From 0e5071629930be0ce3e0c737a802d556d5edf7b9 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Sun, 4 Dec 2022 15:17:40 +0000 Subject: [PATCH 06/22] MNT: Re-rendered with conda-build 3.23.2, conda-smithy 3.22.0, and conda-forge-pinning 2022.12.04.13.24.59 --- .azure-pipelines/azure-pipelines-linux.yml | 96 +----- .azure-pipelines/azure-pipelines-osx.yml | 52 +-- .azure-pipelines/azure-pipelines-win.yml | 26 +- .../linux_64_arrow_cpp6.0.2openssl3.yaml | 111 ------- .../linux_64_arrow_cpp7.0.1openssl1.1.1.yaml | 111 ------- .../linux_64_arrow_cpp7.0.1openssl3.yaml | 111 ------- .../linux_64_arrow_cpp8.0.1openssl1.1.1.yaml | 111 ------- .../linux_64_arrow_cpp9.0.0openssl1.1.1.yaml | 111 ------- .../linux_64_arrow_cpp9.0.0openssl3.yaml | 111 ------- ...l1.1.1.yaml => linux_64_openssl1.1.1.yaml} | 3 + ....1openssl3.yaml => linux_64_openssl3.yaml} | 3 + .../linux_aarch64_arrow_cpp6.0.2openssl3.yaml | 115 ------- ...ux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml | 115 ------- .../linux_aarch64_arrow_cpp7.0.1openssl3.yaml | 115 ------- ...ux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml | 115 ------- ...ux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml | 115 ------- .../linux_aarch64_arrow_cpp9.0.0openssl3.yaml | 115 ------- ...1.yaml => linux_aarch64_openssl1.1.1.yaml} | 3 + ...nssl3.yaml => linux_aarch64_openssl3.yaml} | 3 + .../linux_ppc64le_arrow_cpp6.0.2openssl3.yaml | 111 ------- ...ux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml | 111 ------- .../linux_ppc64le_arrow_cpp7.0.1openssl3.yaml | 111 ------- ...ux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml | 111 ------- ...ux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml | 111 ------- .../linux_ppc64le_arrow_cpp9.0.0openssl3.yaml | 111 ------- ...1.yaml => linux_ppc64le_openssl1.1.1.yaml} | 3 + ...nssl3.yaml => linux_ppc64le_openssl3.yaml} | 3 + .../osx_64_arrow_cpp6.0.2openssl3.yaml | 109 ------- .../osx_64_arrow_cpp7.0.1openssl1.1.1.yaml | 109 ------- .../osx_64_arrow_cpp7.0.1openssl3.yaml | 109 ------- .../osx_64_arrow_cpp8.0.1openssl1.1.1.yaml | 109 ------- .../osx_64_arrow_cpp9.0.0openssl1.1.1.yaml | 109 ------- .../osx_64_arrow_cpp9.0.0openssl3.yaml | 109 ------- ...ssl1.1.1.yaml => osx_64_openssl1.1.1.yaml} | 3 + ....0.1openssl3.yaml => osx_64_openssl3.yaml} | 3 + .../osx_arm64_arrow_cpp6.0.2openssl3.yaml | 109 ------- .../osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml | 109 ------- .../osx_arm64_arrow_cpp7.0.1openssl3.yaml | 109 ------- .../osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml | 109 ------- .../osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml | 109 ------- .../osx_arm64_arrow_cpp9.0.0openssl3.yaml | 109 ------- ...1.1.1.yaml => osx_arm64_openssl1.1.1.yaml} | 3 + ...1openssl3.yaml => osx_arm64_openssl3.yaml} | 3 + .../win_64_arrow_cpp6.0.2openssl3.yaml | 95 ------ .../win_64_arrow_cpp7.0.1openssl1.1.1.yaml | 95 ------ .../win_64_arrow_cpp7.0.1openssl3.yaml | 95 ------ .../win_64_arrow_cpp8.0.1openssl1.1.1.yaml | 95 ------ .../win_64_arrow_cpp9.0.0openssl1.1.1.yaml | 95 ------ .../win_64_arrow_cpp9.0.0openssl3.yaml | 95 ------ ...ssl1.1.1.yaml => win_64_openssl1.1.1.yaml} | 3 + ....0.1openssl3.yaml => win_64_openssl3.yaml} | 3 + README.md | 300 ++---------------- 52 files changed, 84 insertions(+), 4326 deletions(-) delete mode 100644 .ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml delete mode 100644 .ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml delete mode 100644 .ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml delete mode 100644 .ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{linux_64_arrow_cpp6.0.2openssl1.1.1.yaml => linux_64_openssl1.1.1.yaml} (97%) rename .ci_support/{linux_64_arrow_cpp8.0.1openssl3.yaml => linux_64_openssl3.yaml} (97%) delete mode 100644 .ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml delete mode 100644 .ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml delete mode 100644 .ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml delete mode 100644 .ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml => linux_aarch64_openssl1.1.1.yaml} (98%) rename .ci_support/{linux_aarch64_arrow_cpp8.0.1openssl3.yaml => linux_aarch64_openssl3.yaml} (98%) delete mode 100644 .ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml delete mode 100644 .ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml delete mode 100644 .ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml delete mode 100644 .ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml => linux_ppc64le_openssl1.1.1.yaml} (97%) rename .ci_support/{linux_ppc64le_arrow_cpp8.0.1openssl3.yaml => linux_ppc64le_openssl3.yaml} (97%) delete mode 100644 .ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml delete mode 100644 .ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml delete mode 100644 .ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml delete mode 100644 .ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{osx_64_arrow_cpp6.0.2openssl1.1.1.yaml => osx_64_openssl1.1.1.yaml} (97%) rename .ci_support/{osx_64_arrow_cpp8.0.1openssl3.yaml => osx_64_openssl3.yaml} (97%) delete mode 100644 .ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml delete mode 100644 .ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml delete mode 100644 .ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml delete mode 100644 .ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml => osx_arm64_openssl1.1.1.yaml} (97%) rename .ci_support/{osx_arm64_arrow_cpp8.0.1openssl3.yaml => osx_arm64_openssl3.yaml} (97%) delete mode 100644 .ci_support/win_64_arrow_cpp6.0.2openssl3.yaml delete mode 100644 .ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/win_64_arrow_cpp7.0.1openssl3.yaml delete mode 100644 .ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml delete mode 100644 .ci_support/win_64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{win_64_arrow_cpp6.0.2openssl1.1.1.yaml => win_64_openssl1.1.1.yaml} (97%) rename .ci_support/{win_64_arrow_cpp8.0.1openssl3.yaml => win_64_openssl3.yaml} (97%) diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 6fabfc32..fd96606e 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -8,100 +8,28 @@ jobs: vmImage: ubuntu-latest strategy: matrix: - linux_64_arrow_cpp6.0.2openssl1.1.1: - CONFIG: linux_64_arrow_cpp6.0.2openssl1.1.1 + linux_64_openssl1.1.1: + CONFIG: linux_64_openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp6.0.2openssl3: - CONFIG: linux_64_arrow_cpp6.0.2openssl3 + linux_64_openssl3: + CONFIG: linux_64_openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp7.0.1openssl1.1.1: - CONFIG: linux_64_arrow_cpp7.0.1openssl1.1.1 + linux_aarch64_openssl1.1.1: + CONFIG: linux_aarch64_openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp7.0.1openssl3: - CONFIG: linux_64_arrow_cpp7.0.1openssl3 + linux_aarch64_openssl3: + CONFIG: linux_aarch64_openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp8.0.1openssl1.1.1: - CONFIG: linux_64_arrow_cpp8.0.1openssl1.1.1 + linux_ppc64le_openssl1.1.1: + CONFIG: linux_ppc64le_openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp8.0.1openssl3: - CONFIG: linux_64_arrow_cpp8.0.1openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp9.0.0openssl1.1.1: - CONFIG: linux_64_arrow_cpp9.0.0openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp9.0.0openssl3: - CONFIG: linux_64_arrow_cpp9.0.0openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp6.0.2openssl1.1.1: - CONFIG: linux_aarch64_arrow_cpp6.0.2openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp6.0.2openssl3: - CONFIG: linux_aarch64_arrow_cpp6.0.2openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp7.0.1openssl1.1.1: - CONFIG: linux_aarch64_arrow_cpp7.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp7.0.1openssl3: - CONFIG: linux_aarch64_arrow_cpp7.0.1openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp8.0.1openssl1.1.1: - CONFIG: linux_aarch64_arrow_cpp8.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp8.0.1openssl3: - CONFIG: linux_aarch64_arrow_cpp8.0.1openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp9.0.0openssl1.1.1: - CONFIG: linux_aarch64_arrow_cpp9.0.0openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp9.0.0openssl3: - CONFIG: linux_aarch64_arrow_cpp9.0.0openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp6.0.2openssl1.1.1: - CONFIG: linux_ppc64le_arrow_cpp6.0.2openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp6.0.2openssl3: - CONFIG: linux_ppc64le_arrow_cpp6.0.2openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp7.0.1openssl1.1.1: - CONFIG: linux_ppc64le_arrow_cpp7.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp7.0.1openssl3: - CONFIG: linux_ppc64le_arrow_cpp7.0.1openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp8.0.1openssl1.1.1: - CONFIG: linux_ppc64le_arrow_cpp8.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp8.0.1openssl3: - CONFIG: linux_ppc64le_arrow_cpp8.0.1openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp9.0.0openssl1.1.1: - CONFIG: linux_ppc64le_arrow_cpp9.0.0openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp9.0.0openssl3: - CONFIG: linux_ppc64le_arrow_cpp9.0.0openssl3 + linux_ppc64le_openssl3: + CONFIG: linux_ppc64le_openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 timeoutInMinutes: 360 diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index d53fecb5..5fa9ba9c 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -8,53 +8,17 @@ jobs: vmImage: macOS-11 strategy: matrix: - osx_64_arrow_cpp6.0.2openssl1.1.1: - CONFIG: osx_64_arrow_cpp6.0.2openssl1.1.1 + osx_64_openssl1.1.1: + CONFIG: osx_64_openssl1.1.1 UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp6.0.2openssl3: - CONFIG: osx_64_arrow_cpp6.0.2openssl3 + osx_64_openssl3: + CONFIG: osx_64_openssl3 UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp7.0.1openssl1.1.1: - CONFIG: osx_64_arrow_cpp7.0.1openssl1.1.1 + osx_arm64_openssl1.1.1: + CONFIG: osx_arm64_openssl1.1.1 UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp7.0.1openssl3: - CONFIG: osx_64_arrow_cpp7.0.1openssl3 - UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp8.0.1openssl1.1.1: - CONFIG: osx_64_arrow_cpp8.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp8.0.1openssl3: - CONFIG: osx_64_arrow_cpp8.0.1openssl3 - UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp9.0.0openssl1.1.1: - CONFIG: osx_64_arrow_cpp9.0.0openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp9.0.0openssl3: - CONFIG: osx_64_arrow_cpp9.0.0openssl3 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp6.0.2openssl1.1.1: - CONFIG: osx_arm64_arrow_cpp6.0.2openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp6.0.2openssl3: - CONFIG: osx_arm64_arrow_cpp6.0.2openssl3 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp7.0.1openssl1.1.1: - CONFIG: osx_arm64_arrow_cpp7.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp7.0.1openssl3: - CONFIG: osx_arm64_arrow_cpp7.0.1openssl3 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp8.0.1openssl1.1.1: - CONFIG: osx_arm64_arrow_cpp8.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp8.0.1openssl3: - CONFIG: osx_arm64_arrow_cpp8.0.1openssl3 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp9.0.0openssl1.1.1: - CONFIG: osx_arm64_arrow_cpp9.0.0openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp9.0.0openssl3: - CONFIG: osx_arm64_arrow_cpp9.0.0openssl3 + osx_arm64_openssl3: + CONFIG: osx_arm64_openssl3 UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 0af202a1..1fd23141 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,29 +8,11 @@ jobs: vmImage: windows-2019 strategy: matrix: - win_64_arrow_cpp6.0.2openssl1.1.1: - CONFIG: win_64_arrow_cpp6.0.2openssl1.1.1 + win_64_openssl1.1.1: + CONFIG: win_64_openssl1.1.1 UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp6.0.2openssl3: - CONFIG: win_64_arrow_cpp6.0.2openssl3 - UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp7.0.1openssl1.1.1: - CONFIG: win_64_arrow_cpp7.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp7.0.1openssl3: - CONFIG: win_64_arrow_cpp7.0.1openssl3 - UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp8.0.1openssl1.1.1: - CONFIG: win_64_arrow_cpp8.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp8.0.1openssl3: - CONFIG: win_64_arrow_cpp8.0.1openssl3 - UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp9.0.0openssl1.1.1: - CONFIG: win_64_arrow_cpp9.0.0openssl1.1.1 - UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp9.0.0openssl3: - CONFIG: win_64_arrow_cpp9.0.0openssl3 + win_64_openssl3: + CONFIG: win_64_openssl3 UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 variables: diff --git a/.ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml b/.ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml deleted file mode 100644 index 92f0fc38..00000000 --- a/.ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml +++ /dev/null @@ -1,111 +0,0 @@ -arrow_cpp: -- 6.0.2 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml deleted file mode 100644 index 3eea3664..00000000 --- a/.ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,111 +0,0 @@ -arrow_cpp: -- 7.0.1 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml deleted file mode 100644 index ed16435b..00000000 --- a/.ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml +++ /dev/null @@ -1,111 +0,0 @@ -arrow_cpp: -- 7.0.1 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml deleted file mode 100644 index 39abbee1..00000000 --- a/.ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,111 +0,0 @@ -arrow_cpp: -- 8.0.1 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml deleted file mode 100644 index 32d8de29..00000000 --- a/.ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml +++ /dev/null @@ -1,111 +0,0 @@ -arrow_cpp: -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml deleted file mode 100644 index e76b4927..00000000 --- a/.ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml +++ /dev/null @@ -1,111 +0,0 @@ -arrow_cpp: -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml b/.ci_support/linux_64_openssl1.1.1.yaml similarity index 97% rename from .ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml rename to .ci_support/linux_64_openssl1.1.1.yaml index 1b479386..260134b2 100644 --- a/.ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml +++ b/.ci_support/linux_64_openssl1.1.1.yaml @@ -1,5 +1,8 @@ arrow_cpp: - 6.0.2 +- 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: diff --git a/.ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/linux_64_openssl3.yaml similarity index 97% rename from .ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml rename to .ci_support/linux_64_openssl3.yaml index f49d4ff3..14075403 100644 --- a/.ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml +++ b/.ci_support/linux_64_openssl3.yaml @@ -1,5 +1,8 @@ arrow_cpp: +- 6.0.2 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: diff --git a/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml deleted file mode 100644 index fa27fda4..00000000 --- a/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml +++ /dev/null @@ -1,115 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 6.0.2 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml deleted file mode 100644 index e7e371ba..00000000 --- a/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,115 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 7.0.1 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml deleted file mode 100644 index f370b455..00000000 --- a/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml +++ /dev/null @@ -1,115 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 7.0.1 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml deleted file mode 100644 index 6b95cdc8..00000000 --- a/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,115 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 8.0.1 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml deleted file mode 100644 index 5706a63a..00000000 --- a/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml +++ /dev/null @@ -1,115 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml deleted file mode 100644 index d8e34bc0..00000000 --- a/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml +++ /dev/null @@ -1,115 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml b/.ci_support/linux_aarch64_openssl1.1.1.yaml similarity index 98% rename from .ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml rename to .ci_support/linux_aarch64_openssl1.1.1.yaml index c56e62be..906e6052 100644 --- a/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml +++ b/.ci_support/linux_aarch64_openssl1.1.1.yaml @@ -2,6 +2,9 @@ BUILD: - aarch64-conda_cos7-linux-gnu arrow_cpp: - 6.0.2 +- 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: diff --git a/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/linux_aarch64_openssl3.yaml similarity index 98% rename from .ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml rename to .ci_support/linux_aarch64_openssl3.yaml index c6a819ac..5be3c737 100644 --- a/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml +++ b/.ci_support/linux_aarch64_openssl3.yaml @@ -1,7 +1,10 @@ BUILD: - aarch64-conda_cos7-linux-gnu arrow_cpp: +- 6.0.2 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: diff --git a/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml deleted file mode 100644 index c7295870..00000000 --- a/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml +++ /dev/null @@ -1,111 +0,0 @@ -arrow_cpp: -- 6.0.2 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml deleted file mode 100644 index eb5e1f03..00000000 --- a/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,111 +0,0 @@ -arrow_cpp: -- 7.0.1 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml deleted file mode 100644 index 2039eb64..00000000 --- a/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml +++ /dev/null @@ -1,111 +0,0 @@ -arrow_cpp: -- 7.0.1 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml deleted file mode 100644 index f427d0cf..00000000 --- a/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,111 +0,0 @@ -arrow_cpp: -- 8.0.1 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml deleted file mode 100644 index e5c93838..00000000 --- a/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml +++ /dev/null @@ -1,111 +0,0 @@ -arrow_cpp: -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml deleted file mode 100644 index 55711f94..00000000 --- a/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml +++ /dev/null @@ -1,111 +0,0 @@ -arrow_cpp: -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml b/.ci_support/linux_ppc64le_openssl1.1.1.yaml similarity index 97% rename from .ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml rename to .ci_support/linux_ppc64le_openssl1.1.1.yaml index 4c97698d..8259bdbc 100644 --- a/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml +++ b/.ci_support/linux_ppc64le_openssl1.1.1.yaml @@ -1,5 +1,8 @@ arrow_cpp: - 6.0.2 +- 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: diff --git a/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml b/.ci_support/linux_ppc64le_openssl3.yaml similarity index 97% rename from .ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml rename to .ci_support/linux_ppc64le_openssl3.yaml index 3241c376..cdcc601e 100644 --- a/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml +++ b/.ci_support/linux_ppc64le_openssl3.yaml @@ -1,5 +1,8 @@ arrow_cpp: +- 6.0.2 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: diff --git a/.ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml b/.ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml deleted file mode 100644 index 7788fa63..00000000 --- a/.ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml +++ /dev/null @@ -1,109 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 6.0.2 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml deleted file mode 100644 index 908f638a..00000000 --- a/.ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,109 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 7.0.1 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml deleted file mode 100644 index ef6038db..00000000 --- a/.ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml +++ /dev/null @@ -1,109 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 7.0.1 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml deleted file mode 100644 index aea04d7e..00000000 --- a/.ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,109 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 8.0.1 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml deleted file mode 100644 index 66c5b360..00000000 --- a/.ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml +++ /dev/null @@ -1,109 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 9.0.0 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml deleted file mode 100644 index 1db1aeca..00000000 --- a/.ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml +++ /dev/null @@ -1,109 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 9.0.0 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml b/.ci_support/osx_64_openssl1.1.1.yaml similarity index 97% rename from .ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml rename to .ci_support/osx_64_openssl1.1.1.yaml index 02381c64..2a375c5a 100644 --- a/.ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml +++ b/.ci_support/osx_64_openssl1.1.1.yaml @@ -2,6 +2,9 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' arrow_cpp: - 6.0.2 +- 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/osx_64_openssl3.yaml similarity index 97% rename from .ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml rename to .ci_support/osx_64_openssl3.yaml index fa2efd89..0658d265 100644 --- a/.ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml +++ b/.ci_support/osx_64_openssl3.yaml @@ -1,7 +1,10 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' arrow_cpp: +- 6.0.2 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml deleted file mode 100644 index 052869e5..00000000 --- a/.ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml +++ /dev/null @@ -1,109 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 6.0.2 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml deleted file mode 100644 index 7dbb7e47..00000000 --- a/.ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,109 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 7.0.1 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml deleted file mode 100644 index 1cf507f3..00000000 --- a/.ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml +++ /dev/null @@ -1,109 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 7.0.1 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml deleted file mode 100644 index c47d26bf..00000000 --- a/.ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,109 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 8.0.1 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml deleted file mode 100644 index b67a1989..00000000 --- a/.ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml +++ /dev/null @@ -1,109 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 9.0.0 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml deleted file mode 100644 index 22f13033..00000000 --- a/.ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml +++ /dev/null @@ -1,109 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 9.0.0 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml b/.ci_support/osx_arm64_openssl1.1.1.yaml similarity index 97% rename from .ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml rename to .ci_support/osx_arm64_openssl1.1.1.yaml index e2464328..b9b191b2 100644 --- a/.ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml +++ b/.ci_support/osx_arm64_openssl1.1.1.yaml @@ -2,6 +2,9 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' arrow_cpp: - 6.0.2 +- 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/osx_arm64_openssl3.yaml similarity index 97% rename from .ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml rename to .ci_support/osx_arm64_openssl3.yaml index caaa3899..53325bc8 100644 --- a/.ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml +++ b/.ci_support/osx_arm64_openssl3.yaml @@ -1,7 +1,10 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' arrow_cpp: +- 6.0.2 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - clang c_compiler_version: diff --git a/.ci_support/win_64_arrow_cpp6.0.2openssl3.yaml b/.ci_support/win_64_arrow_cpp6.0.2openssl3.yaml deleted file mode 100644 index d02f7f41..00000000 --- a/.ci_support/win_64_arrow_cpp6.0.2openssl3.yaml +++ /dev/null @@ -1,95 +0,0 @@ -arrow_cpp: -- 6.0.2 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml deleted file mode 100644 index aaf26cf7..00000000 --- a/.ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,95 +0,0 @@ -arrow_cpp: -- 7.0.1 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/win_64_arrow_cpp7.0.1openssl3.yaml deleted file mode 100644 index 972c819f..00000000 --- a/.ci_support/win_64_arrow_cpp7.0.1openssl3.yaml +++ /dev/null @@ -1,95 +0,0 @@ -arrow_cpp: -- 7.0.1 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml deleted file mode 100644 index 5a1b4648..00000000 --- a/.ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,95 +0,0 @@ -arrow_cpp: -- 8.0.1 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml deleted file mode 100644 index dbb8e3d6..00000000 --- a/.ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml +++ /dev/null @@ -1,95 +0,0 @@ -arrow_cpp: -- 9.0.0 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/win_64_arrow_cpp9.0.0openssl3.yaml deleted file mode 100644 index 9b681c70..00000000 --- a/.ci_support/win_64_arrow_cpp9.0.0openssl3.yaml +++ /dev/null @@ -1,95 +0,0 @@ -arrow_cpp: -- 9.0.0 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml b/.ci_support/win_64_openssl1.1.1.yaml similarity index 97% rename from .ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml rename to .ci_support/win_64_openssl1.1.1.yaml index 72d7fbfa..b2720743 100644 --- a/.ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml +++ b/.ci_support/win_64_openssl1.1.1.yaml @@ -1,5 +1,8 @@ arrow_cpp: - 6.0.2 +- 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - vs2019 cfitsio: diff --git a/.ci_support/win_64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/win_64_openssl3.yaml similarity index 97% rename from .ci_support/win_64_arrow_cpp8.0.1openssl3.yaml rename to .ci_support/win_64_openssl3.yaml index f8c25c9f..3eec6b1e 100644 --- a/.ci_support/win_64_arrow_cpp8.0.1openssl3.yaml +++ b/.ci_support/win_64_openssl3.yaml @@ -1,5 +1,8 @@ arrow_cpp: +- 6.0.2 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - vs2019 cfitsio: diff --git a/README.md b/README.md index ef1db0b3..3e35e8d7 100644 --- a/README.md +++ b/README.md @@ -27,339 +27,87 @@ Current build status
VariantStatus
linux_64_openssl1.1.1linux_64_arrow_cpp6.0.2openssl1.1.1 - variant + variant
linux_64_openssl3linux_64_arrow_cpp6.0.2openssl3 - variant + variant
linux_aarch64_openssl1.1.1linux_64_arrow_cpp7.0.1openssl1.1.1 - variant + variant
linux_aarch64_openssl3linux_64_arrow_cpp7.0.1openssl3 - variant + variant
linux_ppc64le_openssl1.1.1linux_64_arrow_cpp8.0.1openssl1.1.1 - variant + variant
linux_ppc64le_openssl3linux_64_arrow_cpp8.0.1openssl3 - variant + variant
osx_64_openssl1.1.1linux_64_arrow_cpp9.0.0openssl1.1.1 - variant + variant
osx_64_openssl3linux_64_arrow_cpp9.0.0openssl3 - variant + variant
osx_arm64_openssl1.1.1linux_aarch64_arrow_cpp6.0.2openssl1.1.1 - variant + variant
osx_arm64_openssl3linux_aarch64_arrow_cpp6.0.2openssl3 - variant + variant
win_64_openssl1.1.1linux_aarch64_arrow_cpp7.0.1openssl1.1.1 - variant + variant
win_64_openssl3linux_aarch64_arrow_cpp7.0.1openssl3 - variant + variant + +
linux_aarch64_arrow_cpp8.0.1openssl1.1.1 + + variant + +
linux_aarch64_arrow_cpp8.0.1openssl3 + + variant + +
linux_aarch64_arrow_cpp9.0.0openssl1.1.1 + + variant + +
linux_aarch64_arrow_cpp9.0.0openssl3 + + variant + +
linux_ppc64le_arrow_cpp6.0.2openssl1.1.1 + + variant + +
linux_ppc64le_arrow_cpp6.0.2openssl3 + + variant + +
linux_ppc64le_arrow_cpp7.0.1openssl1.1.1 + + variant + +
linux_ppc64le_arrow_cpp7.0.1openssl3 + + variant + +
linux_ppc64le_arrow_cpp8.0.1openssl1.1.1 + + variant + +
linux_ppc64le_arrow_cpp8.0.1openssl3 + + variant + +
linux_ppc64le_arrow_cpp9.0.0openssl1.1.1 + + variant + +
linux_ppc64le_arrow_cpp9.0.0openssl3 + + variant + +
osx_64_arrow_cpp6.0.2openssl1.1.1 + + variant + +
osx_64_arrow_cpp6.0.2openssl3 + + variant + +
osx_64_arrow_cpp7.0.1openssl1.1.1 + + variant + +
osx_64_arrow_cpp7.0.1openssl3 + + variant + +
osx_64_arrow_cpp8.0.1openssl1.1.1 + + variant + +
osx_64_arrow_cpp8.0.1openssl3 + + variant + +
osx_64_arrow_cpp9.0.0openssl1.1.1 + + variant + +
osx_64_arrow_cpp9.0.0openssl3 + + variant + +
osx_arm64_arrow_cpp6.0.2openssl1.1.1 + + variant + +
osx_arm64_arrow_cpp6.0.2openssl3 + + variant + +
osx_arm64_arrow_cpp7.0.1openssl1.1.1 + + variant + +
osx_arm64_arrow_cpp7.0.1openssl3 + + variant + +
osx_arm64_arrow_cpp8.0.1openssl1.1.1 + + variant + +
osx_arm64_arrow_cpp8.0.1openssl3 + + variant + +
osx_arm64_arrow_cpp9.0.0openssl1.1.1 + + variant + +
osx_arm64_arrow_cpp9.0.0openssl3 + + variant + +
win_64_arrow_cpp6.0.2openssl1.1.1 + + variant + +
win_64_arrow_cpp6.0.2openssl3 + + variant + +
win_64_arrow_cpp7.0.1openssl1.1.1 + + variant + +
win_64_arrow_cpp7.0.1openssl3 + + variant + +
win_64_arrow_cpp8.0.1openssl1.1.1 + + variant + +
win_64_arrow_cpp8.0.1openssl3 + + variant + +
win_64_arrow_cpp9.0.0openssl1.1.1 + + variant + +
win_64_arrow_cpp9.0.0openssl3 + + variant
- + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From f0084745d0e0a56e60ca0c1dafe7cc5803a15ab8 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Mon, 5 Dec 2022 00:03:17 +0100 Subject: [PATCH 07/22] meta.yaml: swith to libarrow --- .azure-pipelines/azure-pipelines-linux.yml | 65 ----------- .azure-pipelines/azure-pipelines-osx.yml | 42 ------- .azure-pipelines/azure-pipelines-win.yml | 85 -------------- .ci_support/linux_64_openssl1.1.1.yaml | 114 ------------------- .ci_support/linux_64_openssl3.yaml | 114 ------------------- .ci_support/linux_aarch64_openssl1.1.1.yaml | 118 -------------------- .ci_support/linux_aarch64_openssl3.yaml | 118 -------------------- .ci_support/linux_ppc64le_openssl1.1.1.yaml | 114 ------------------- .ci_support/linux_ppc64le_openssl3.yaml | 114 ------------------- .ci_support/osx_64_openssl1.1.1.yaml | 112 ------------------- .ci_support/osx_64_openssl3.yaml | 112 ------------------- .ci_support/osx_arm64_openssl1.1.1.yaml | 112 ------------------- .ci_support/osx_arm64_openssl3.yaml | 112 ------------------- .ci_support/win_64_openssl1.1.1.yaml | 98 ---------------- .ci_support/win_64_openssl3.yaml | 98 ---------------- .scripts/build_steps.sh | 98 ---------------- .scripts/run_docker_build.sh | 105 ----------------- .scripts/run_osx_build.sh | 94 ---------------- azure-pipelines.yml | 8 -- recipe/meta.yaml | 5 +- 20 files changed, 2 insertions(+), 1836 deletions(-) delete mode 100755 .azure-pipelines/azure-pipelines-linux.yml delete mode 100755 .azure-pipelines/azure-pipelines-osx.yml delete mode 100755 .azure-pipelines/azure-pipelines-win.yml delete mode 100644 .ci_support/linux_64_openssl1.1.1.yaml delete mode 100644 .ci_support/linux_64_openssl3.yaml delete mode 100644 .ci_support/linux_aarch64_openssl1.1.1.yaml delete mode 100644 .ci_support/linux_aarch64_openssl3.yaml delete mode 100644 .ci_support/linux_ppc64le_openssl1.1.1.yaml delete mode 100644 .ci_support/linux_ppc64le_openssl3.yaml delete mode 100644 .ci_support/osx_64_openssl1.1.1.yaml delete mode 100644 .ci_support/osx_64_openssl3.yaml delete mode 100644 .ci_support/osx_arm64_openssl1.1.1.yaml delete mode 100644 .ci_support/osx_arm64_openssl3.yaml delete mode 100644 .ci_support/win_64_openssl1.1.1.yaml delete mode 100644 .ci_support/win_64_openssl3.yaml delete mode 100755 .scripts/build_steps.sh delete mode 100755 .scripts/run_docker_build.sh delete mode 100755 .scripts/run_osx_build.sh delete mode 100644 azure-pipelines.yml diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml deleted file mode 100755 index fd96606e..00000000 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ /dev/null @@ -1,65 +0,0 @@ -# This file was generated automatically from conda-smithy. To update this configuration, -# update the conda-forge.yml and/or the recipe/meta.yaml. -# -*- mode: yaml -*- - -jobs: -- job: linux - pool: - vmImage: ubuntu-latest - strategy: - matrix: - linux_64_openssl1.1.1: - CONFIG: linux_64_openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_openssl3: - CONFIG: linux_64_openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_openssl1.1.1: - CONFIG: linux_aarch64_openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_openssl3: - CONFIG: linux_aarch64_openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_openssl1.1.1: - CONFIG: linux_ppc64le_openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_openssl3: - CONFIG: linux_ppc64le_openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - timeoutInMinutes: 360 - - steps: - - script: | - rm -rf /opt/ghc - df -h - displayName: Manage disk space - - # configure qemu binfmt-misc running. This allows us to run docker containers - # embedded qemu-static - - script: | - docker run --rm --privileged multiarch/qemu-user-static:register --reset --credential yes - ls /proc/sys/fs/binfmt_misc/ - condition: not(startsWith(variables['CONFIG'], 'linux_64')) - displayName: Configure binfmt_misc - - - script: | - export CI=azure - export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME - export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) - if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then - export IS_PR_BUILD="True" - else - export IS_PR_BUILD="False" - fi - .scripts/run_docker_build.sh - displayName: Run docker build - env: - BINSTAR_TOKEN: $(BINSTAR_TOKEN) - FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) - STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml deleted file mode 100755 index 5fa9ba9c..00000000 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ /dev/null @@ -1,42 +0,0 @@ -# This file was generated automatically from conda-smithy. To update this configuration, -# update the conda-forge.yml and/or the recipe/meta.yaml. -# -*- mode: yaml -*- - -jobs: -- job: osx - pool: - vmImage: macOS-11 - strategy: - matrix: - osx_64_openssl1.1.1: - CONFIG: osx_64_openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_64_openssl3: - CONFIG: osx_64_openssl3 - UPLOAD_PACKAGES: 'True' - osx_arm64_openssl1.1.1: - CONFIG: osx_arm64_openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_arm64_openssl3: - CONFIG: osx_arm64_openssl3 - UPLOAD_PACKAGES: 'True' - timeoutInMinutes: 360 - - steps: - # TODO: Fast finish on azure pipelines? - - script: | - export CI=azure - export OSX_FORCE_SDK_DOWNLOAD="1" - export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME - export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) - if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then - export IS_PR_BUILD="True" - else - export IS_PR_BUILD="False" - fi - ./.scripts/run_osx_build.sh - displayName: Run OSX build - env: - BINSTAR_TOKEN: $(BINSTAR_TOKEN) - FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) - STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml deleted file mode 100755 index 1fd23141..00000000 --- a/.azure-pipelines/azure-pipelines-win.yml +++ /dev/null @@ -1,85 +0,0 @@ -# This file was generated automatically from conda-smithy. To update this configuration, -# update the conda-forge.yml and/or the recipe/meta.yaml. -# -*- mode: yaml -*- - -jobs: -- job: win - pool: - vmImage: windows-2019 - strategy: - matrix: - win_64_openssl1.1.1: - CONFIG: win_64_openssl1.1.1 - UPLOAD_PACKAGES: 'True' - win_64_openssl3: - CONFIG: win_64_openssl3 - UPLOAD_PACKAGES: 'True' - timeoutInMinutes: 360 - variables: - CONDA_BLD_PATH: D:\\bld\\ - - steps: - - task: PythonScript@0 - displayName: 'Download Miniforge' - inputs: - scriptSource: inline - script: | - import urllib.request - url = 'https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Windows-x86_64.exe' - path = r"$(Build.ArtifactStagingDirectory)/Miniforge.exe" - urllib.request.urlretrieve(url, path) - - - script: | - start /wait "" %BUILD_ARTIFACTSTAGINGDIRECTORY%\Miniforge.exe /InstallationType=JustMe /RegisterPython=0 /S /D=C:\Miniforge - displayName: Install Miniforge - - - powershell: Write-Host "##vso[task.prependpath]C:\Miniforge\Scripts" - displayName: Add conda to PATH - - - script: | - call activate base - mamba.exe install "python=3.9" conda-build conda pip boa conda-forge-ci-setup=3 "py-lief<0.12" -c conda-forge --strict-channel-priority --yes - displayName: Install conda-build - - - script: set PYTHONUNBUFFERED=1 - displayName: Set PYTHONUNBUFFERED - - # Configure the VM - - script: | - call activate base - setup_conda_rc .\ ".\recipe" .\.ci_support\%CONFIG%.yaml - displayName: conda-forge CI setup - - # Configure the VM. - - script: | - set "CI=azure" - call activate base - run_conda_forge_build_setup - displayName: conda-forge build setup - - - script: | - call activate base - if EXIST LICENSE.txt ( - copy LICENSE.txt "recipe\\recipe-scripts-license.txt" - ) - conda.exe mambabuild "recipe" -m .ci_support\%CONFIG%.yaml --suppress-variables - displayName: Build recipe - env: - PYTHONUNBUFFERED: 1 - - script: | - set "FEEDSTOCK_NAME=%BUILD_REPOSITORY_NAME:*/=%" - call activate base - validate_recipe_outputs "%FEEDSTOCK_NAME%" - displayName: Validate Recipe Outputs - - - script: | - set "GIT_BRANCH=%BUILD_SOURCEBRANCHNAME%" - set "FEEDSTOCK_NAME=%BUILD_REPOSITORY_NAME:*/=%" - call activate base - upload_package --validate --feedstock-name="%FEEDSTOCK_NAME%" .\ ".\recipe" .ci_support\%CONFIG%.yaml - displayName: Upload package - env: - BINSTAR_TOKEN: $(BINSTAR_TOKEN) - FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) - STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) - condition: and(succeeded(), not(eq(variables['UPLOAD_PACKAGES'], 'False')), not(eq(variables['Build.Reason'], 'PullRequest'))) \ No newline at end of file diff --git a/.ci_support/linux_64_openssl1.1.1.yaml b/.ci_support/linux_64_openssl1.1.1.yaml deleted file mode 100644 index 260134b2..00000000 --- a/.ci_support/linux_64_openssl1.1.1.yaml +++ /dev/null @@ -1,114 +0,0 @@ -arrow_cpp: -- 6.0.2 -- 7.0.1 -- 8.0.1 -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_openssl3.yaml b/.ci_support/linux_64_openssl3.yaml deleted file mode 100644 index 14075403..00000000 --- a/.ci_support/linux_64_openssl3.yaml +++ /dev/null @@ -1,114 +0,0 @@ -arrow_cpp: -- 6.0.2 -- 7.0.1 -- 8.0.1 -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_openssl1.1.1.yaml b/.ci_support/linux_aarch64_openssl1.1.1.yaml deleted file mode 100644 index 906e6052..00000000 --- a/.ci_support/linux_aarch64_openssl1.1.1.yaml +++ /dev/null @@ -1,118 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 6.0.2 -- 7.0.1 -- 8.0.1 -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_openssl3.yaml b/.ci_support/linux_aarch64_openssl3.yaml deleted file mode 100644 index 5be3c737..00000000 --- a/.ci_support/linux_aarch64_openssl3.yaml +++ /dev/null @@ -1,118 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 6.0.2 -- 7.0.1 -- 8.0.1 -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_openssl1.1.1.yaml b/.ci_support/linux_ppc64le_openssl1.1.1.yaml deleted file mode 100644 index 8259bdbc..00000000 --- a/.ci_support/linux_ppc64le_openssl1.1.1.yaml +++ /dev/null @@ -1,114 +0,0 @@ -arrow_cpp: -- 6.0.2 -- 7.0.1 -- 8.0.1 -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_openssl3.yaml b/.ci_support/linux_ppc64le_openssl3.yaml deleted file mode 100644 index cdcc601e..00000000 --- a/.ci_support/linux_ppc64le_openssl3.yaml +++ /dev/null @@ -1,114 +0,0 @@ -arrow_cpp: -- 6.0.2 -- 7.0.1 -- 8.0.1 -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '10' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- gxx -cxx_compiler_version: -- '10' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_openssl1.1.1.yaml b/.ci_support/osx_64_openssl1.1.1.yaml deleted file mode 100644 index 2a375c5a..00000000 --- a/.ci_support/osx_64_openssl1.1.1.yaml +++ /dev/null @@ -1,112 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 6.0.2 -- 7.0.1 -- 8.0.1 -- 9.0.0 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_openssl3.yaml b/.ci_support/osx_64_openssl3.yaml deleted file mode 100644 index 0658d265..00000000 --- a/.ci_support/osx_64_openssl3.yaml +++ /dev/null @@ -1,112 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 6.0.2 -- 7.0.1 -- 8.0.1 -- 9.0.0 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_openssl1.1.1.yaml b/.ci_support/osx_arm64_openssl1.1.1.yaml deleted file mode 100644 index b9b191b2..00000000 --- a/.ci_support/osx_arm64_openssl1.1.1.yaml +++ /dev/null @@ -1,112 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 6.0.2 -- 7.0.1 -- 8.0.1 -- 9.0.0 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_openssl3.yaml b/.ci_support/osx_arm64_openssl3.yaml deleted file mode 100644 index 53325bc8..00000000 --- a/.ci_support/osx_arm64_openssl3.yaml +++ /dev/null @@ -1,112 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 6.0.2 -- 7.0.1 -- 8.0.1 -- 9.0.0 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_openssl1.1.1.yaml b/.ci_support/win_64_openssl1.1.1.yaml deleted file mode 100644 index b2720743..00000000 --- a/.ci_support/win_64_openssl1.1.1.yaml +++ /dev/null @@ -1,98 +0,0 @@ -arrow_cpp: -- 6.0.2 -- 7.0.1 -- 8.0.1 -- 9.0.0 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_openssl3.yaml b/.ci_support/win_64_openssl3.yaml deleted file mode 100644 index 3eec6b1e..00000000 --- a/.ci_support/win_64_openssl3.yaml +++ /dev/null @@ -1,98 +0,0 @@ -arrow_cpp: -- 6.0.2 -- 7.0.1 -- 8.0.1 -- 9.0.0 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -curl: -- '7' -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh deleted file mode 100755 index 0f486cf6..00000000 --- a/.scripts/build_steps.sh +++ /dev/null @@ -1,98 +0,0 @@ -#!/usr/bin/env bash - -# PLEASE NOTE: This script has been automatically generated by conda-smithy. Any changes here -# will be lost next time ``conda smithy rerender`` is run. If you would like to make permanent -# changes to this script, consider a proposal to conda-smithy so that other feedstocks can also -# benefit from the improvement. - -# -*- mode: jinja-shell -*- - -set -xeuo pipefail -export FEEDSTOCK_ROOT="${FEEDSTOCK_ROOT:-/home/conda/feedstock_root}" -source ${FEEDSTOCK_ROOT}/.scripts/logging_utils.sh - - -( endgroup "Start Docker" ) 2> /dev/null - -( startgroup "Configuring conda" ) 2> /dev/null - -export PYTHONUNBUFFERED=1 -export RECIPE_ROOT="${RECIPE_ROOT:-/home/conda/recipe_root}" -export CI_SUPPORT="${FEEDSTOCK_ROOT}/.ci_support" -export CONFIG_FILE="${CI_SUPPORT}/${CONFIG}.yaml" - -cat >~/.condarc < /dev/null - -if [[ -f "${FEEDSTOCK_ROOT}/LICENSE.txt" ]]; then - cp "${FEEDSTOCK_ROOT}/LICENSE.txt" "${RECIPE_ROOT}/recipe-scripts-license.txt" -fi - -if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then - if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then - EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" - fi - conda debug "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ - ${EXTRA_CB_OPTIONS:-} \ - --clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" - - # Drop into an interactive shell - /bin/bash -else - conda mambabuild "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ - --suppress-variables ${EXTRA_CB_OPTIONS:-} \ - --clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" - ( startgroup "Validating outputs" ) 2> /dev/null - - validate_recipe_outputs "${FEEDSTOCK_NAME}" - - ( endgroup "Validating outputs" ) 2> /dev/null - - ( startgroup "Uploading packages" ) 2> /dev/null - - if [[ "${UPLOAD_PACKAGES}" != "False" ]] && [[ "${IS_PR_BUILD}" == "False" ]]; then - upload_package --validate --feedstock-name="${FEEDSTOCK_NAME}" "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" - fi - - ( endgroup "Uploading packages" ) 2> /dev/null -fi - -( startgroup "Final checks" ) 2> /dev/null - -touch "${FEEDSTOCK_ROOT}/build_artifacts/conda-forge-build-done-${CONFIG}" \ No newline at end of file diff --git a/.scripts/run_docker_build.sh b/.scripts/run_docker_build.sh deleted file mode 100755 index 92362398..00000000 --- a/.scripts/run_docker_build.sh +++ /dev/null @@ -1,105 +0,0 @@ -#!/usr/bin/env bash - -# PLEASE NOTE: This script has been automatically generated by conda-smithy. Any changes here -# will be lost next time ``conda smithy rerender`` is run. If you would like to make permanent -# changes to this script, consider a proposal to conda-smithy so that other feedstocks can also -# benefit from the improvement. - -source .scripts/logging_utils.sh - -( startgroup "Configure Docker" ) 2> /dev/null - -set -xeo pipefail - -THISDIR="$( cd "$( dirname "$0" )" >/dev/null && pwd )" -PROVIDER_DIR="$(basename $THISDIR)" - -FEEDSTOCK_ROOT="$( cd "$( dirname "$0" )/.." >/dev/null && pwd )" -RECIPE_ROOT="${FEEDSTOCK_ROOT}/recipe" - -if [ -z ${FEEDSTOCK_NAME} ]; then - export FEEDSTOCK_NAME=$(basename ${FEEDSTOCK_ROOT}) -fi - -docker info - -# In order for the conda-build process in the container to write to the mounted -# volumes, we need to run with the same id as the host machine, which is -# normally the owner of the mounted volumes, or at least has write permission -export HOST_USER_ID=$(id -u) -# Check if docker-machine is being used (normally on OSX) and get the uid from -# the VM -if hash docker-machine 2> /dev/null && docker-machine active > /dev/null; then - export HOST_USER_ID=$(docker-machine ssh $(docker-machine active) id -u) -fi - -ARTIFACTS="$FEEDSTOCK_ROOT/build_artifacts" - -if [ -z "$CONFIG" ]; then - set +x - FILES=`ls .ci_support/linux_*` - CONFIGS="" - for file in $FILES; do - CONFIGS="${CONFIGS}'${file:12:-5}' or "; - done - echo "Need to set CONFIG env variable. Value can be one of ${CONFIGS:0:-4}" - exit 1 -fi - -if [ -z "${DOCKER_IMAGE}" ]; then - SHYAML_INSTALLED="$(shyaml -h || echo NO)" - if [ "${SHYAML_INSTALLED}" == "NO" ]; then - echo "WARNING: DOCKER_IMAGE variable not set and shyaml not installed. Trying to parse with coreutils" - DOCKER_IMAGE=$(cat .ci_support/${CONFIG}.yaml | grep '^docker_image:$' -A 1 | tail -n 1 | cut -b 3-) - if [ "${DOCKER_IMAGE}" = "" ]; then - echo "No docker_image entry found in ${CONFIG}. Falling back to quay.io/condaforge/linux-anvil-comp7" - DOCKER_IMAGE="quay.io/condaforge/linux-anvil-comp7" - fi - else - DOCKER_IMAGE="$(cat "${FEEDSTOCK_ROOT}/.ci_support/${CONFIG}.yaml" | shyaml get-value docker_image.0 quay.io/condaforge/linux-anvil-comp7 )" - fi -fi - -mkdir -p "$ARTIFACTS" -DONE_CANARY="$ARTIFACTS/conda-forge-build-done-${CONFIG}" -rm -f "$DONE_CANARY" - -# Allow people to specify extra default arguments to `docker run` (e.g. `--rm`) -DOCKER_RUN_ARGS="${CONDA_FORGE_DOCKER_RUN_ARGS}" -if [ -z "${CI}" ]; then - DOCKER_RUN_ARGS="-it ${DOCKER_RUN_ARGS}" -fi - -( endgroup "Configure Docker" ) 2> /dev/null - -( startgroup "Start Docker" ) 2> /dev/null - -export UPLOAD_PACKAGES="${UPLOAD_PACKAGES:-True}" -export IS_PR_BUILD="${IS_PR_BUILD:-False}" -docker pull "${DOCKER_IMAGE}" -docker run ${DOCKER_RUN_ARGS} \ - -v "${RECIPE_ROOT}":/home/conda/recipe_root:rw,z,delegated \ - -v "${FEEDSTOCK_ROOT}":/home/conda/feedstock_root:rw,z,delegated \ - -e CONFIG \ - -e HOST_USER_ID \ - -e UPLOAD_PACKAGES \ - -e IS_PR_BUILD \ - -e GIT_BRANCH \ - -e UPLOAD_ON_BRANCH \ - -e CI \ - -e FEEDSTOCK_NAME \ - -e CPU_COUNT \ - -e BUILD_WITH_CONDA_DEBUG \ - -e BUILD_OUTPUT_ID \ - -e BINSTAR_TOKEN \ - -e FEEDSTOCK_TOKEN \ - -e STAGING_BINSTAR_TOKEN \ - "${DOCKER_IMAGE}" \ - bash \ - "/home/conda/feedstock_root/${PROVIDER_DIR}/build_steps.sh" - -# verify that the end of the script was reached -test -f "$DONE_CANARY" - -# This closes the last group opened in `build_steps.sh` -( endgroup "Final checks" ) 2> /dev/null \ No newline at end of file diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh deleted file mode 100755 index b3abaeb5..00000000 --- a/.scripts/run_osx_build.sh +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/env bash - -# -*- mode: jinja-shell -*- - -source .scripts/logging_utils.sh - -set -xe - -MINIFORGE_HOME=${MINIFORGE_HOME:-${HOME}/miniforge3} - -( startgroup "Installing a fresh version of Miniforge" ) 2> /dev/null - -MINIFORGE_URL="https://github.com/conda-forge/miniforge/releases/latest/download" -MINIFORGE_FILE="Mambaforge-MacOSX-$(uname -m).sh" -curl -L -O "${MINIFORGE_URL}/${MINIFORGE_FILE}" -rm -rf ${MINIFORGE_HOME} -bash $MINIFORGE_FILE -b -p ${MINIFORGE_HOME} - -( endgroup "Installing a fresh version of Miniforge" ) 2> /dev/null - -( startgroup "Configuring conda" ) 2> /dev/null - -source ${MINIFORGE_HOME}/etc/profile.d/conda.sh -conda activate base - -mamba install --update-specs --quiet --yes --channel conda-forge \ - conda-build pip boa conda-forge-ci-setup=3 "py-lief<0.12" -mamba update --update-specs --yes --quiet --channel conda-forge \ - conda-build pip boa conda-forge-ci-setup=3 "py-lief<0.12" - - - -echo -e "\n\nSetting up the condarc and mangling the compiler." -setup_conda_rc ./ ./recipe ./.ci_support/${CONFIG}.yaml - -if [[ "${CI:-}" != "" ]]; then - mangle_compiler ./ ./recipe .ci_support/${CONFIG}.yaml -fi - -if [[ "${CI:-}" != "" ]]; then - echo -e "\n\nMangling homebrew in the CI to avoid conflicts." - /usr/bin/sudo mangle_homebrew - /usr/bin/sudo -k -else - echo -e "\n\nNot mangling homebrew as we are not running in CI" -fi - -echo -e "\n\nRunning the build setup script." -source run_conda_forge_build_setup - - - -( endgroup "Configuring conda" ) 2> /dev/null - -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 - -if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then - if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then - EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" - fi - conda debug ./recipe -m ./.ci_support/${CONFIG}.yaml \ - ${EXTRA_CB_OPTIONS:-} \ - --clobber-file ./.ci_support/clobber_${CONFIG}.yaml - - # Drop into an interactive shell - /bin/bash -else - conda mambabuild ./recipe -m ./.ci_support/${CONFIG}.yaml \ - --suppress-variables ${EXTRA_CB_OPTIONS:-} \ - --clobber-file ./.ci_support/clobber_${CONFIG}.yaml - ( startgroup "Validating outputs" ) 2> /dev/null - - validate_recipe_outputs "${FEEDSTOCK_NAME}" - - ( endgroup "Validating outputs" ) 2> /dev/null - - ( startgroup "Uploading packages" ) 2> /dev/null - - if [[ "${UPLOAD_PACKAGES}" != "False" ]] && [[ "${IS_PR_BUILD}" == "False" ]]; then - upload_package --validate --feedstock-name="${FEEDSTOCK_NAME}" ./ ./recipe ./.ci_support/${CONFIG}.yaml - fi - - ( endgroup "Uploading packages" ) 2> /dev/null -fi \ No newline at end of file diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 6b346f50..00000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,8 +0,0 @@ -# This file was generated automatically from conda-smithy. To update this configuration, -# update the conda-forge.yml and/or the recipe/meta.yaml. -# -*- mode: yaml -*- - -jobs: - - template: ./.azure-pipelines/azure-pipelines-linux.yml - - template: ./.azure-pipelines/azure-pipelines-win.yml - - template: ./.azure-pipelines/azure-pipelines-osx.yml \ No newline at end of file diff --git a/recipe/meta.yaml b/recipe/meta.yaml index d77fd6a9..4b6fe1a5 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,7 +26,6 @@ requirements: - {{ compiler('cxx') }} - sysroot_linux-64 2.17 # [linux64] host: - - arrow-cpp >=10.0 - blosc - cfitsio - expat @@ -41,6 +40,7 @@ requirements: - json-c # [not win] - kealib - lerc + - libarrow - libcurl - libdeflate - libiconv @@ -170,7 +170,6 @@ outputs: - sysroot_linux-64 2.17 # [linux64] host: - {{ pin_subpackage('libgdal', exact=True) }} - - arrow-cpp >=10.0 - blosc - cfitsio - curl @@ -185,6 +184,7 @@ outputs: - jpeg - json-c # [not win] - kealib + - libarrow - libkml - libnetcdf - libpng @@ -209,7 +209,6 @@ outputs: - zstd run: - {{ pin_subpackage('libgdal', exact=True) }} - - arrow-cpp - cfitsio - geotiff - giflib # [not win] From b03276afc87e70c2d6d0f37848cadbb5049fc0b6 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Sun, 4 Dec 2022 23:18:48 +0000 Subject: [PATCH 08/22] MNT: Re-rendered with conda-build 3.23.2, conda-smithy 3.22.0, and conda-forge-pinning 2022.12.04.19.22.35 --- .azure-pipelines/azure-pipelines-linux.yml | 65 +++++++++++ .azure-pipelines/azure-pipelines-osx.yml | 42 ++++++++ .azure-pipelines/azure-pipelines-win.yml | 85 +++++++++++++++ .ci_support/linux_64_openssl1.1.1.yaml | 109 +++++++++++++++++++ .ci_support/linux_64_openssl3.yaml | 109 +++++++++++++++++++ .ci_support/linux_aarch64_openssl1.1.1.yaml | 113 ++++++++++++++++++++ .ci_support/linux_aarch64_openssl3.yaml | 113 ++++++++++++++++++++ .ci_support/linux_ppc64le_openssl1.1.1.yaml | 109 +++++++++++++++++++ .ci_support/linux_ppc64le_openssl3.yaml | 109 +++++++++++++++++++ .ci_support/osx_64_openssl1.1.1.yaml | 107 ++++++++++++++++++ .ci_support/osx_64_openssl3.yaml | 107 ++++++++++++++++++ .ci_support/osx_arm64_openssl1.1.1.yaml | 107 ++++++++++++++++++ .ci_support/osx_arm64_openssl3.yaml | 107 ++++++++++++++++++ .ci_support/win_64_openssl1.1.1.yaml | 93 ++++++++++++++++ .ci_support/win_64_openssl3.yaml | 93 ++++++++++++++++ .scripts/build_steps.sh | 98 +++++++++++++++++ .scripts/run_docker_build.sh | 105 ++++++++++++++++++ .scripts/run_osx_build.sh | 94 ++++++++++++++++ azure-pipelines.yml | 8 ++ 19 files changed, 1773 insertions(+) create mode 100755 .azure-pipelines/azure-pipelines-linux.yml create mode 100755 .azure-pipelines/azure-pipelines-osx.yml create mode 100755 .azure-pipelines/azure-pipelines-win.yml create mode 100644 .ci_support/linux_64_openssl1.1.1.yaml create mode 100644 .ci_support/linux_64_openssl3.yaml create mode 100644 .ci_support/linux_aarch64_openssl1.1.1.yaml create mode 100644 .ci_support/linux_aarch64_openssl3.yaml create mode 100644 .ci_support/linux_ppc64le_openssl1.1.1.yaml create mode 100644 .ci_support/linux_ppc64le_openssl3.yaml create mode 100644 .ci_support/osx_64_openssl1.1.1.yaml create mode 100644 .ci_support/osx_64_openssl3.yaml create mode 100644 .ci_support/osx_arm64_openssl1.1.1.yaml create mode 100644 .ci_support/osx_arm64_openssl3.yaml create mode 100644 .ci_support/win_64_openssl1.1.1.yaml create mode 100644 .ci_support/win_64_openssl3.yaml create mode 100755 .scripts/build_steps.sh create mode 100755 .scripts/run_docker_build.sh create mode 100755 .scripts/run_osx_build.sh create mode 100644 azure-pipelines.yml diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml new file mode 100755 index 00000000..fd96606e --- /dev/null +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -0,0 +1,65 @@ +# This file was generated automatically from conda-smithy. To update this configuration, +# update the conda-forge.yml and/or the recipe/meta.yaml. +# -*- mode: yaml -*- + +jobs: +- job: linux + pool: + vmImage: ubuntu-latest + strategy: + matrix: + linux_64_openssl1.1.1: + CONFIG: linux_64_openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_openssl3: + CONFIG: linux_64_openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_openssl1.1.1: + CONFIG: linux_aarch64_openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_openssl3: + CONFIG: linux_aarch64_openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_openssl1.1.1: + CONFIG: linux_ppc64le_openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_openssl3: + CONFIG: linux_ppc64le_openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + timeoutInMinutes: 360 + + steps: + - script: | + rm -rf /opt/ghc + df -h + displayName: Manage disk space + + # configure qemu binfmt-misc running. This allows us to run docker containers + # embedded qemu-static + - script: | + docker run --rm --privileged multiarch/qemu-user-static:register --reset --credential yes + ls /proc/sys/fs/binfmt_misc/ + condition: not(startsWith(variables['CONFIG'], 'linux_64')) + displayName: Configure binfmt_misc + + - script: | + export CI=azure + export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME + export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) + if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then + export IS_PR_BUILD="True" + else + export IS_PR_BUILD="False" + fi + .scripts/run_docker_build.sh + displayName: Run docker build + env: + BINSTAR_TOKEN: $(BINSTAR_TOKEN) + FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) + STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml new file mode 100755 index 00000000..5fa9ba9c --- /dev/null +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -0,0 +1,42 @@ +# This file was generated automatically from conda-smithy. To update this configuration, +# update the conda-forge.yml and/or the recipe/meta.yaml. +# -*- mode: yaml -*- + +jobs: +- job: osx + pool: + vmImage: macOS-11 + strategy: + matrix: + osx_64_openssl1.1.1: + CONFIG: osx_64_openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_64_openssl3: + CONFIG: osx_64_openssl3 + UPLOAD_PACKAGES: 'True' + osx_arm64_openssl1.1.1: + CONFIG: osx_arm64_openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_arm64_openssl3: + CONFIG: osx_arm64_openssl3 + UPLOAD_PACKAGES: 'True' + timeoutInMinutes: 360 + + steps: + # TODO: Fast finish on azure pipelines? + - script: | + export CI=azure + export OSX_FORCE_SDK_DOWNLOAD="1" + export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME + export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) + if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then + export IS_PR_BUILD="True" + else + export IS_PR_BUILD="False" + fi + ./.scripts/run_osx_build.sh + displayName: Run OSX build + env: + BINSTAR_TOKEN: $(BINSTAR_TOKEN) + FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) + STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml new file mode 100755 index 00000000..1fd23141 --- /dev/null +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -0,0 +1,85 @@ +# This file was generated automatically from conda-smithy. To update this configuration, +# update the conda-forge.yml and/or the recipe/meta.yaml. +# -*- mode: yaml -*- + +jobs: +- job: win + pool: + vmImage: windows-2019 + strategy: + matrix: + win_64_openssl1.1.1: + CONFIG: win_64_openssl1.1.1 + UPLOAD_PACKAGES: 'True' + win_64_openssl3: + CONFIG: win_64_openssl3 + UPLOAD_PACKAGES: 'True' + timeoutInMinutes: 360 + variables: + CONDA_BLD_PATH: D:\\bld\\ + + steps: + - task: PythonScript@0 + displayName: 'Download Miniforge' + inputs: + scriptSource: inline + script: | + import urllib.request + url = 'https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Windows-x86_64.exe' + path = r"$(Build.ArtifactStagingDirectory)/Miniforge.exe" + urllib.request.urlretrieve(url, path) + + - script: | + start /wait "" %BUILD_ARTIFACTSTAGINGDIRECTORY%\Miniforge.exe /InstallationType=JustMe /RegisterPython=0 /S /D=C:\Miniforge + displayName: Install Miniforge + + - powershell: Write-Host "##vso[task.prependpath]C:\Miniforge\Scripts" + displayName: Add conda to PATH + + - script: | + call activate base + mamba.exe install "python=3.9" conda-build conda pip boa conda-forge-ci-setup=3 "py-lief<0.12" -c conda-forge --strict-channel-priority --yes + displayName: Install conda-build + + - script: set PYTHONUNBUFFERED=1 + displayName: Set PYTHONUNBUFFERED + + # Configure the VM + - script: | + call activate base + setup_conda_rc .\ ".\recipe" .\.ci_support\%CONFIG%.yaml + displayName: conda-forge CI setup + + # Configure the VM. + - script: | + set "CI=azure" + call activate base + run_conda_forge_build_setup + displayName: conda-forge build setup + + - script: | + call activate base + if EXIST LICENSE.txt ( + copy LICENSE.txt "recipe\\recipe-scripts-license.txt" + ) + conda.exe mambabuild "recipe" -m .ci_support\%CONFIG%.yaml --suppress-variables + displayName: Build recipe + env: + PYTHONUNBUFFERED: 1 + - script: | + set "FEEDSTOCK_NAME=%BUILD_REPOSITORY_NAME:*/=%" + call activate base + validate_recipe_outputs "%FEEDSTOCK_NAME%" + displayName: Validate Recipe Outputs + + - script: | + set "GIT_BRANCH=%BUILD_SOURCEBRANCHNAME%" + set "FEEDSTOCK_NAME=%BUILD_REPOSITORY_NAME:*/=%" + call activate base + upload_package --validate --feedstock-name="%FEEDSTOCK_NAME%" .\ ".\recipe" .ci_support\%CONFIG%.yaml + displayName: Upload package + env: + BINSTAR_TOKEN: $(BINSTAR_TOKEN) + FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) + STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) + condition: and(succeeded(), not(eq(variables['UPLOAD_PACKAGES'], 'False')), not(eq(variables['Build.Reason'], 'PullRequest'))) \ No newline at end of file diff --git a/.ci_support/linux_64_openssl1.1.1.yaml b/.ci_support/linux_64_openssl1.1.1.yaml new file mode 100644 index 00000000..74bbb887 --- /dev/null +++ b/.ci_support/linux_64_openssl1.1.1.yaml @@ -0,0 +1,109 @@ +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_64_openssl3.yaml b/.ci_support/linux_64_openssl3.yaml new file mode 100644 index 00000000..62132e27 --- /dev/null +++ b/.ci_support/linux_64_openssl3.yaml @@ -0,0 +1,109 @@ +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_openssl1.1.1.yaml b/.ci_support/linux_aarch64_openssl1.1.1.yaml new file mode 100644 index 00000000..0ccedf9e --- /dev/null +++ b/.ci_support/linux_aarch64_openssl1.1.1.yaml @@ -0,0 +1,113 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_openssl3.yaml b/.ci_support/linux_aarch64_openssl3.yaml new file mode 100644 index 00000000..451b4a27 --- /dev/null +++ b/.ci_support/linux_aarch64_openssl3.yaml @@ -0,0 +1,113 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_openssl1.1.1.yaml b/.ci_support/linux_ppc64le_openssl1.1.1.yaml new file mode 100644 index 00000000..b6609936 --- /dev/null +++ b/.ci_support/linux_ppc64le_openssl1.1.1.yaml @@ -0,0 +1,109 @@ +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_openssl3.yaml b/.ci_support/linux_ppc64le_openssl3.yaml new file mode 100644 index 00000000..85aba378 --- /dev/null +++ b/.ci_support/linux_ppc64le_openssl3.yaml @@ -0,0 +1,109 @@ +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_openssl1.1.1.yaml b/.ci_support/osx_64_openssl1.1.1.yaml new file mode 100644 index 00000000..e020ca57 --- /dev/null +++ b/.ci_support/osx_64_openssl1.1.1.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_openssl3.yaml b/.ci_support/osx_64_openssl3.yaml new file mode 100644 index 00000000..41b80b0c --- /dev/null +++ b/.ci_support/osx_64_openssl3.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_openssl1.1.1.yaml b/.ci_support/osx_arm64_openssl1.1.1.yaml new file mode 100644 index 00000000..77969a99 --- /dev/null +++ b/.ci_support/osx_arm64_openssl1.1.1.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_openssl3.yaml b/.ci_support/osx_arm64_openssl3.yaml new file mode 100644 index 00000000..4b7aa770 --- /dev/null +++ b/.ci_support/osx_arm64_openssl3.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_openssl1.1.1.yaml b/.ci_support/win_64_openssl1.1.1.yaml new file mode 100644 index 00000000..9b982af9 --- /dev/null +++ b/.ci_support/win_64_openssl1.1.1.yaml @@ -0,0 +1,93 @@ +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_openssl3.yaml b/.ci_support/win_64_openssl3.yaml new file mode 100644 index 00000000..d29ee9ce --- /dev/null +++ b/.ci_support/win_64_openssl3.yaml @@ -0,0 +1,93 @@ +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +curl: +- '7' +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh new file mode 100755 index 00000000..0f486cf6 --- /dev/null +++ b/.scripts/build_steps.sh @@ -0,0 +1,98 @@ +#!/usr/bin/env bash + +# PLEASE NOTE: This script has been automatically generated by conda-smithy. Any changes here +# will be lost next time ``conda smithy rerender`` is run. If you would like to make permanent +# changes to this script, consider a proposal to conda-smithy so that other feedstocks can also +# benefit from the improvement. + +# -*- mode: jinja-shell -*- + +set -xeuo pipefail +export FEEDSTOCK_ROOT="${FEEDSTOCK_ROOT:-/home/conda/feedstock_root}" +source ${FEEDSTOCK_ROOT}/.scripts/logging_utils.sh + + +( endgroup "Start Docker" ) 2> /dev/null + +( startgroup "Configuring conda" ) 2> /dev/null + +export PYTHONUNBUFFERED=1 +export RECIPE_ROOT="${RECIPE_ROOT:-/home/conda/recipe_root}" +export CI_SUPPORT="${FEEDSTOCK_ROOT}/.ci_support" +export CONFIG_FILE="${CI_SUPPORT}/${CONFIG}.yaml" + +cat >~/.condarc < /dev/null + +if [[ -f "${FEEDSTOCK_ROOT}/LICENSE.txt" ]]; then + cp "${FEEDSTOCK_ROOT}/LICENSE.txt" "${RECIPE_ROOT}/recipe-scripts-license.txt" +fi + +if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then + if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then + EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" + fi + conda debug "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ + ${EXTRA_CB_OPTIONS:-} \ + --clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" + + # Drop into an interactive shell + /bin/bash +else + conda mambabuild "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ + --suppress-variables ${EXTRA_CB_OPTIONS:-} \ + --clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" + ( startgroup "Validating outputs" ) 2> /dev/null + + validate_recipe_outputs "${FEEDSTOCK_NAME}" + + ( endgroup "Validating outputs" ) 2> /dev/null + + ( startgroup "Uploading packages" ) 2> /dev/null + + if [[ "${UPLOAD_PACKAGES}" != "False" ]] && [[ "${IS_PR_BUILD}" == "False" ]]; then + upload_package --validate --feedstock-name="${FEEDSTOCK_NAME}" "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" + fi + + ( endgroup "Uploading packages" ) 2> /dev/null +fi + +( startgroup "Final checks" ) 2> /dev/null + +touch "${FEEDSTOCK_ROOT}/build_artifacts/conda-forge-build-done-${CONFIG}" \ No newline at end of file diff --git a/.scripts/run_docker_build.sh b/.scripts/run_docker_build.sh new file mode 100755 index 00000000..92362398 --- /dev/null +++ b/.scripts/run_docker_build.sh @@ -0,0 +1,105 @@ +#!/usr/bin/env bash + +# PLEASE NOTE: This script has been automatically generated by conda-smithy. Any changes here +# will be lost next time ``conda smithy rerender`` is run. If you would like to make permanent +# changes to this script, consider a proposal to conda-smithy so that other feedstocks can also +# benefit from the improvement. + +source .scripts/logging_utils.sh + +( startgroup "Configure Docker" ) 2> /dev/null + +set -xeo pipefail + +THISDIR="$( cd "$( dirname "$0" )" >/dev/null && pwd )" +PROVIDER_DIR="$(basename $THISDIR)" + +FEEDSTOCK_ROOT="$( cd "$( dirname "$0" )/.." >/dev/null && pwd )" +RECIPE_ROOT="${FEEDSTOCK_ROOT}/recipe" + +if [ -z ${FEEDSTOCK_NAME} ]; then + export FEEDSTOCK_NAME=$(basename ${FEEDSTOCK_ROOT}) +fi + +docker info + +# In order for the conda-build process in the container to write to the mounted +# volumes, we need to run with the same id as the host machine, which is +# normally the owner of the mounted volumes, or at least has write permission +export HOST_USER_ID=$(id -u) +# Check if docker-machine is being used (normally on OSX) and get the uid from +# the VM +if hash docker-machine 2> /dev/null && docker-machine active > /dev/null; then + export HOST_USER_ID=$(docker-machine ssh $(docker-machine active) id -u) +fi + +ARTIFACTS="$FEEDSTOCK_ROOT/build_artifacts" + +if [ -z "$CONFIG" ]; then + set +x + FILES=`ls .ci_support/linux_*` + CONFIGS="" + for file in $FILES; do + CONFIGS="${CONFIGS}'${file:12:-5}' or "; + done + echo "Need to set CONFIG env variable. Value can be one of ${CONFIGS:0:-4}" + exit 1 +fi + +if [ -z "${DOCKER_IMAGE}" ]; then + SHYAML_INSTALLED="$(shyaml -h || echo NO)" + if [ "${SHYAML_INSTALLED}" == "NO" ]; then + echo "WARNING: DOCKER_IMAGE variable not set and shyaml not installed. Trying to parse with coreutils" + DOCKER_IMAGE=$(cat .ci_support/${CONFIG}.yaml | grep '^docker_image:$' -A 1 | tail -n 1 | cut -b 3-) + if [ "${DOCKER_IMAGE}" = "" ]; then + echo "No docker_image entry found in ${CONFIG}. Falling back to quay.io/condaforge/linux-anvil-comp7" + DOCKER_IMAGE="quay.io/condaforge/linux-anvil-comp7" + fi + else + DOCKER_IMAGE="$(cat "${FEEDSTOCK_ROOT}/.ci_support/${CONFIG}.yaml" | shyaml get-value docker_image.0 quay.io/condaforge/linux-anvil-comp7 )" + fi +fi + +mkdir -p "$ARTIFACTS" +DONE_CANARY="$ARTIFACTS/conda-forge-build-done-${CONFIG}" +rm -f "$DONE_CANARY" + +# Allow people to specify extra default arguments to `docker run` (e.g. `--rm`) +DOCKER_RUN_ARGS="${CONDA_FORGE_DOCKER_RUN_ARGS}" +if [ -z "${CI}" ]; then + DOCKER_RUN_ARGS="-it ${DOCKER_RUN_ARGS}" +fi + +( endgroup "Configure Docker" ) 2> /dev/null + +( startgroup "Start Docker" ) 2> /dev/null + +export UPLOAD_PACKAGES="${UPLOAD_PACKAGES:-True}" +export IS_PR_BUILD="${IS_PR_BUILD:-False}" +docker pull "${DOCKER_IMAGE}" +docker run ${DOCKER_RUN_ARGS} \ + -v "${RECIPE_ROOT}":/home/conda/recipe_root:rw,z,delegated \ + -v "${FEEDSTOCK_ROOT}":/home/conda/feedstock_root:rw,z,delegated \ + -e CONFIG \ + -e HOST_USER_ID \ + -e UPLOAD_PACKAGES \ + -e IS_PR_BUILD \ + -e GIT_BRANCH \ + -e UPLOAD_ON_BRANCH \ + -e CI \ + -e FEEDSTOCK_NAME \ + -e CPU_COUNT \ + -e BUILD_WITH_CONDA_DEBUG \ + -e BUILD_OUTPUT_ID \ + -e BINSTAR_TOKEN \ + -e FEEDSTOCK_TOKEN \ + -e STAGING_BINSTAR_TOKEN \ + "${DOCKER_IMAGE}" \ + bash \ + "/home/conda/feedstock_root/${PROVIDER_DIR}/build_steps.sh" + +# verify that the end of the script was reached +test -f "$DONE_CANARY" + +# This closes the last group opened in `build_steps.sh` +( endgroup "Final checks" ) 2> /dev/null \ No newline at end of file diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh new file mode 100755 index 00000000..b3abaeb5 --- /dev/null +++ b/.scripts/run_osx_build.sh @@ -0,0 +1,94 @@ +#!/usr/bin/env bash + +# -*- mode: jinja-shell -*- + +source .scripts/logging_utils.sh + +set -xe + +MINIFORGE_HOME=${MINIFORGE_HOME:-${HOME}/miniforge3} + +( startgroup "Installing a fresh version of Miniforge" ) 2> /dev/null + +MINIFORGE_URL="https://github.com/conda-forge/miniforge/releases/latest/download" +MINIFORGE_FILE="Mambaforge-MacOSX-$(uname -m).sh" +curl -L -O "${MINIFORGE_URL}/${MINIFORGE_FILE}" +rm -rf ${MINIFORGE_HOME} +bash $MINIFORGE_FILE -b -p ${MINIFORGE_HOME} + +( endgroup "Installing a fresh version of Miniforge" ) 2> /dev/null + +( startgroup "Configuring conda" ) 2> /dev/null + +source ${MINIFORGE_HOME}/etc/profile.d/conda.sh +conda activate base + +mamba install --update-specs --quiet --yes --channel conda-forge \ + conda-build pip boa conda-forge-ci-setup=3 "py-lief<0.12" +mamba update --update-specs --yes --quiet --channel conda-forge \ + conda-build pip boa conda-forge-ci-setup=3 "py-lief<0.12" + + + +echo -e "\n\nSetting up the condarc and mangling the compiler." +setup_conda_rc ./ ./recipe ./.ci_support/${CONFIG}.yaml + +if [[ "${CI:-}" != "" ]]; then + mangle_compiler ./ ./recipe .ci_support/${CONFIG}.yaml +fi + +if [[ "${CI:-}" != "" ]]; then + echo -e "\n\nMangling homebrew in the CI to avoid conflicts." + /usr/bin/sudo mangle_homebrew + /usr/bin/sudo -k +else + echo -e "\n\nNot mangling homebrew as we are not running in CI" +fi + +echo -e "\n\nRunning the build setup script." +source run_conda_forge_build_setup + + + +( endgroup "Configuring conda" ) 2> /dev/null + +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 + +if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then + if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then + EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" + fi + conda debug ./recipe -m ./.ci_support/${CONFIG}.yaml \ + ${EXTRA_CB_OPTIONS:-} \ + --clobber-file ./.ci_support/clobber_${CONFIG}.yaml + + # Drop into an interactive shell + /bin/bash +else + conda mambabuild ./recipe -m ./.ci_support/${CONFIG}.yaml \ + --suppress-variables ${EXTRA_CB_OPTIONS:-} \ + --clobber-file ./.ci_support/clobber_${CONFIG}.yaml + ( startgroup "Validating outputs" ) 2> /dev/null + + validate_recipe_outputs "${FEEDSTOCK_NAME}" + + ( endgroup "Validating outputs" ) 2> /dev/null + + ( startgroup "Uploading packages" ) 2> /dev/null + + if [[ "${UPLOAD_PACKAGES}" != "False" ]] && [[ "${IS_PR_BUILD}" == "False" ]]; then + upload_package --validate --feedstock-name="${FEEDSTOCK_NAME}" ./ ./recipe ./.ci_support/${CONFIG}.yaml + fi + + ( endgroup "Uploading packages" ) 2> /dev/null +fi \ No newline at end of file diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..6b346f50 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,8 @@ +# This file was generated automatically from conda-smithy. To update this configuration, +# update the conda-forge.yml and/or the recipe/meta.yaml. +# -*- mode: yaml -*- + +jobs: + - template: ./.azure-pipelines/azure-pipelines-linux.yml + - template: ./.azure-pipelines/azure-pipelines-win.yml + - template: ./.azure-pipelines/azure-pipelines-osx.yml \ No newline at end of file From b12e3c580d335f8adb2718a269a0f348edc3875c Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Mon, 5 Dec 2022 03:54:14 +0100 Subject: [PATCH 09/22] recipe/meta.yaml: add @h-vetinari suggestions --- recipe/meta.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 4b6fe1a5..c3636415 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,6 +26,8 @@ requirements: - {{ compiler('cxx') }} - sysroot_linux-64 2.17 # [linux64] host: + # libarrow only exists from 10.x + - arrow-cpp # [arrow_cpp != "10.0.1"] - blosc - cfitsio - expat @@ -40,7 +42,7 @@ requirements: - json-c # [not win] - kealib - lerc - - libarrow + - libarrow # [arrow_cpp == "10.0.1"] - libcurl - libdeflate - libiconv @@ -157,6 +159,8 @@ outputs: - name: libgdal-arrow-parquet script: build_arrow_parquet.sh # [unix] script: build_arrow_parquet.bat # [win] + build: + skip: true # [arrow_cpp != "10.0.1"] requirements: build: - cmake @@ -170,6 +174,8 @@ outputs: - sysroot_linux-64 2.17 # [linux64] host: - {{ pin_subpackage('libgdal', exact=True) }} + # libarrow only exists from 10.x + - arrow-cpp # [arrow_cpp != "10.0.1"] - blosc - cfitsio - curl @@ -184,7 +190,7 @@ outputs: - jpeg - json-c # [not win] - kealib - - libarrow + - libarrow # [arrow_cpp == "10.0.1"] - libkml - libnetcdf - libpng From 37e5878ba1296318d19ef6248d6e85a2549d6238 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Mon, 5 Dec 2022 03:00:20 +0000 Subject: [PATCH 10/22] MNT: Re-rendered with conda-build 3.23.2, conda-smithy 3.22.0, and conda-forge-pinning 2022.12.04.19.22.35 --- .azure-pipelines/azure-pipelines-linux.yml | 96 +++++- .azure-pipelines/azure-pipelines-osx.yml | 52 ++- .azure-pipelines/azure-pipelines-win.yml | 26 +- ... linux_64_arrow_cpp6.0.2openssl1.1.1.yaml} | 4 +- ...l => linux_64_arrow_cpp6.0.2openssl3.yaml} | 4 +- .../linux_64_arrow_cpp7.0.1openssl1.1.1.yaml | 109 +++++++ .../linux_64_arrow_cpp7.0.1openssl3.yaml | 109 +++++++ .../linux_64_arrow_cpp8.0.1openssl1.1.1.yaml | 109 +++++++ .../linux_64_arrow_cpp8.0.1openssl3.yaml | 109 +++++++ .../linux_64_arrow_cpp9.0.0openssl1.1.1.yaml | 109 +++++++ .../linux_64_arrow_cpp9.0.0openssl3.yaml | 109 +++++++ ...x_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml} | 4 +- ...linux_aarch64_arrow_cpp6.0.2openssl3.yaml} | 4 +- ...ux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml | 113 +++++++ .../linux_aarch64_arrow_cpp7.0.1openssl3.yaml | 113 +++++++ ...ux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml | 113 +++++++ .../linux_aarch64_arrow_cpp8.0.1openssl3.yaml | 113 +++++++ ...ux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml | 113 +++++++ .../linux_aarch64_arrow_cpp9.0.0openssl3.yaml | 113 +++++++ ...x_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml} | 4 +- ...linux_ppc64le_arrow_cpp6.0.2openssl3.yaml} | 4 +- ...ux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml | 109 +++++++ .../linux_ppc64le_arrow_cpp7.0.1openssl3.yaml | 109 +++++++ ...ux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml | 109 +++++++ .../linux_ppc64le_arrow_cpp8.0.1openssl3.yaml | 109 +++++++ ...ux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml | 109 +++++++ .../linux_ppc64le_arrow_cpp9.0.0openssl3.yaml | 109 +++++++ ...=> osx_64_arrow_cpp6.0.2openssl1.1.1.yaml} | 4 +- ...aml => osx_64_arrow_cpp6.0.2openssl3.yaml} | 4 +- .../osx_64_arrow_cpp7.0.1openssl1.1.1.yaml | 107 ++++++ .../osx_64_arrow_cpp7.0.1openssl3.yaml | 107 ++++++ .../osx_64_arrow_cpp8.0.1openssl1.1.1.yaml | 107 ++++++ .../osx_64_arrow_cpp8.0.1openssl3.yaml | 107 ++++++ .../osx_64_arrow_cpp9.0.0openssl1.1.1.yaml | 107 ++++++ .../osx_64_arrow_cpp9.0.0openssl3.yaml | 107 ++++++ ...osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml} | 4 +- ... => osx_arm64_arrow_cpp6.0.2openssl3.yaml} | 4 +- .../osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml | 107 ++++++ .../osx_arm64_arrow_cpp7.0.1openssl3.yaml | 107 ++++++ .../osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml | 107 ++++++ .../osx_arm64_arrow_cpp8.0.1openssl3.yaml | 107 ++++++ .../osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml | 107 ++++++ .../osx_arm64_arrow_cpp9.0.0openssl3.yaml | 107 ++++++ ...=> win_64_arrow_cpp6.0.2openssl1.1.1.yaml} | 4 +- ...aml => win_64_arrow_cpp6.0.2openssl3.yaml} | 4 +- .../win_64_arrow_cpp7.0.1openssl1.1.1.yaml | 93 ++++++ .../win_64_arrow_cpp7.0.1openssl3.yaml | 93 ++++++ .../win_64_arrow_cpp8.0.1openssl1.1.1.yaml | 93 ++++++ .../win_64_arrow_cpp8.0.1openssl3.yaml | 93 ++++++ .../win_64_arrow_cpp9.0.0openssl1.1.1.yaml | 93 ++++++ .../win_64_arrow_cpp9.0.0openssl3.yaml | 93 ++++++ README.md | 307 ++++++++++++++++-- 52 files changed, 4281 insertions(+), 76 deletions(-) rename .ci_support/{linux_64_openssl1.1.1.yaml => linux_64_arrow_cpp6.0.2openssl1.1.1.yaml} (98%) rename .ci_support/{linux_64_openssl3.yaml => linux_64_arrow_cpp6.0.2openssl3.yaml} (98%) create mode 100644 .ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml create mode 100644 .ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml create mode 100644 .ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml create mode 100644 .ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml create mode 100644 .ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml create mode 100644 .ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{linux_aarch64_openssl1.1.1.yaml => linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml} (98%) rename .ci_support/{linux_aarch64_openssl3.yaml => linux_aarch64_arrow_cpp6.0.2openssl3.yaml} (98%) create mode 100644 .ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml create mode 100644 .ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml create mode 100644 .ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml create mode 100644 .ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml create mode 100644 .ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml create mode 100644 .ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{linux_ppc64le_openssl1.1.1.yaml => linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml} (98%) rename .ci_support/{linux_ppc64le_openssl3.yaml => linux_ppc64le_arrow_cpp6.0.2openssl3.yaml} (98%) create mode 100644 .ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml create mode 100644 .ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml create mode 100644 .ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml create mode 100644 .ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml create mode 100644 .ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml create mode 100644 .ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{osx_64_openssl1.1.1.yaml => osx_64_arrow_cpp6.0.2openssl1.1.1.yaml} (98%) rename .ci_support/{osx_64_openssl3.yaml => osx_64_arrow_cpp6.0.2openssl3.yaml} (98%) create mode 100644 .ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml create mode 100644 .ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml create mode 100644 .ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml create mode 100644 .ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml create mode 100644 .ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml create mode 100644 .ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{osx_arm64_openssl1.1.1.yaml => osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml} (98%) rename .ci_support/{osx_arm64_openssl3.yaml => osx_arm64_arrow_cpp6.0.2openssl3.yaml} (98%) create mode 100644 .ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml create mode 100644 .ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml create mode 100644 .ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml create mode 100644 .ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml create mode 100644 .ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml create mode 100644 .ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{win_64_openssl1.1.1.yaml => win_64_arrow_cpp6.0.2openssl1.1.1.yaml} (97%) rename .ci_support/{win_64_openssl3.yaml => win_64_arrow_cpp6.0.2openssl3.yaml} (97%) create mode 100644 .ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml create mode 100644 .ci_support/win_64_arrow_cpp7.0.1openssl3.yaml create mode 100644 .ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml create mode 100644 .ci_support/win_64_arrow_cpp8.0.1openssl3.yaml create mode 100644 .ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml create mode 100644 .ci_support/win_64_arrow_cpp9.0.0openssl3.yaml diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index fd96606e..6fabfc32 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -8,28 +8,100 @@ jobs: vmImage: ubuntu-latest strategy: matrix: - linux_64_openssl1.1.1: - CONFIG: linux_64_openssl1.1.1 + linux_64_arrow_cpp6.0.2openssl1.1.1: + CONFIG: linux_64_arrow_cpp6.0.2openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_openssl3: - CONFIG: linux_64_openssl3 + linux_64_arrow_cpp6.0.2openssl3: + CONFIG: linux_64_arrow_cpp6.0.2openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_openssl1.1.1: - CONFIG: linux_aarch64_openssl1.1.1 + linux_64_arrow_cpp7.0.1openssl1.1.1: + CONFIG: linux_64_arrow_cpp7.0.1openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_openssl3: - CONFIG: linux_aarch64_openssl3 + linux_64_arrow_cpp7.0.1openssl3: + CONFIG: linux_64_arrow_cpp7.0.1openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_openssl1.1.1: - CONFIG: linux_ppc64le_openssl1.1.1 + linux_64_arrow_cpp8.0.1openssl1.1.1: + CONFIG: linux_64_arrow_cpp8.0.1openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_openssl3: - CONFIG: linux_ppc64le_openssl3 + linux_64_arrow_cpp8.0.1openssl3: + CONFIG: linux_64_arrow_cpp8.0.1openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_arrow_cpp9.0.0openssl1.1.1: + CONFIG: linux_64_arrow_cpp9.0.0openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_64_arrow_cpp9.0.0openssl3: + CONFIG: linux_64_arrow_cpp9.0.0openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp6.0.2openssl1.1.1: + CONFIG: linux_aarch64_arrow_cpp6.0.2openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp6.0.2openssl3: + CONFIG: linux_aarch64_arrow_cpp6.0.2openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp7.0.1openssl1.1.1: + CONFIG: linux_aarch64_arrow_cpp7.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp7.0.1openssl3: + CONFIG: linux_aarch64_arrow_cpp7.0.1openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp8.0.1openssl1.1.1: + CONFIG: linux_aarch64_arrow_cpp8.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp8.0.1openssl3: + CONFIG: linux_aarch64_arrow_cpp8.0.1openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp9.0.0openssl1.1.1: + CONFIG: linux_aarch64_arrow_cpp9.0.0openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_arrow_cpp9.0.0openssl3: + CONFIG: linux_aarch64_arrow_cpp9.0.0openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp6.0.2openssl1.1.1: + CONFIG: linux_ppc64le_arrow_cpp6.0.2openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp6.0.2openssl3: + CONFIG: linux_ppc64le_arrow_cpp6.0.2openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp7.0.1openssl1.1.1: + CONFIG: linux_ppc64le_arrow_cpp7.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp7.0.1openssl3: + CONFIG: linux_ppc64le_arrow_cpp7.0.1openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp8.0.1openssl1.1.1: + CONFIG: linux_ppc64le_arrow_cpp8.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp8.0.1openssl3: + CONFIG: linux_ppc64le_arrow_cpp8.0.1openssl3 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp9.0.0openssl1.1.1: + CONFIG: linux_ppc64le_arrow_cpp9.0.0openssl1.1.1 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_ppc64le_arrow_cpp9.0.0openssl3: + CONFIG: linux_ppc64le_arrow_cpp9.0.0openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 timeoutInMinutes: 360 diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index 5fa9ba9c..d53fecb5 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -8,17 +8,53 @@ jobs: vmImage: macOS-11 strategy: matrix: - osx_64_openssl1.1.1: - CONFIG: osx_64_openssl1.1.1 + osx_64_arrow_cpp6.0.2openssl1.1.1: + CONFIG: osx_64_arrow_cpp6.0.2openssl1.1.1 UPLOAD_PACKAGES: 'True' - osx_64_openssl3: - CONFIG: osx_64_openssl3 + osx_64_arrow_cpp6.0.2openssl3: + CONFIG: osx_64_arrow_cpp6.0.2openssl3 UPLOAD_PACKAGES: 'True' - osx_arm64_openssl1.1.1: - CONFIG: osx_arm64_openssl1.1.1 + osx_64_arrow_cpp7.0.1openssl1.1.1: + CONFIG: osx_64_arrow_cpp7.0.1openssl1.1.1 UPLOAD_PACKAGES: 'True' - osx_arm64_openssl3: - CONFIG: osx_arm64_openssl3 + osx_64_arrow_cpp7.0.1openssl3: + CONFIG: osx_64_arrow_cpp7.0.1openssl3 + UPLOAD_PACKAGES: 'True' + osx_64_arrow_cpp8.0.1openssl1.1.1: + CONFIG: osx_64_arrow_cpp8.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_64_arrow_cpp8.0.1openssl3: + CONFIG: osx_64_arrow_cpp8.0.1openssl3 + UPLOAD_PACKAGES: 'True' + osx_64_arrow_cpp9.0.0openssl1.1.1: + CONFIG: osx_64_arrow_cpp9.0.0openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_64_arrow_cpp9.0.0openssl3: + CONFIG: osx_64_arrow_cpp9.0.0openssl3 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp6.0.2openssl1.1.1: + CONFIG: osx_arm64_arrow_cpp6.0.2openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp6.0.2openssl3: + CONFIG: osx_arm64_arrow_cpp6.0.2openssl3 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp7.0.1openssl1.1.1: + CONFIG: osx_arm64_arrow_cpp7.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp7.0.1openssl3: + CONFIG: osx_arm64_arrow_cpp7.0.1openssl3 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp8.0.1openssl1.1.1: + CONFIG: osx_arm64_arrow_cpp8.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp8.0.1openssl3: + CONFIG: osx_arm64_arrow_cpp8.0.1openssl3 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp9.0.0openssl1.1.1: + CONFIG: osx_arm64_arrow_cpp9.0.0openssl1.1.1 + UPLOAD_PACKAGES: 'True' + osx_arm64_arrow_cpp9.0.0openssl3: + CONFIG: osx_arm64_arrow_cpp9.0.0openssl3 UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 1fd23141..0af202a1 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,11 +8,29 @@ jobs: vmImage: windows-2019 strategy: matrix: - win_64_openssl1.1.1: - CONFIG: win_64_openssl1.1.1 + win_64_arrow_cpp6.0.2openssl1.1.1: + CONFIG: win_64_arrow_cpp6.0.2openssl1.1.1 UPLOAD_PACKAGES: 'True' - win_64_openssl3: - CONFIG: win_64_openssl3 + win_64_arrow_cpp6.0.2openssl3: + CONFIG: win_64_arrow_cpp6.0.2openssl3 + UPLOAD_PACKAGES: 'True' + win_64_arrow_cpp7.0.1openssl1.1.1: + CONFIG: win_64_arrow_cpp7.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + win_64_arrow_cpp7.0.1openssl3: + CONFIG: win_64_arrow_cpp7.0.1openssl3 + UPLOAD_PACKAGES: 'True' + win_64_arrow_cpp8.0.1openssl1.1.1: + CONFIG: win_64_arrow_cpp8.0.1openssl1.1.1 + UPLOAD_PACKAGES: 'True' + win_64_arrow_cpp8.0.1openssl3: + CONFIG: win_64_arrow_cpp8.0.1openssl3 + UPLOAD_PACKAGES: 'True' + win_64_arrow_cpp9.0.0openssl1.1.1: + CONFIG: win_64_arrow_cpp9.0.0openssl1.1.1 + UPLOAD_PACKAGES: 'True' + win_64_arrow_cpp9.0.0openssl3: + CONFIG: win_64_arrow_cpp9.0.0openssl3 UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 variables: diff --git a/.ci_support/linux_64_openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml similarity index 98% rename from .ci_support/linux_64_openssl1.1.1.yaml rename to .ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml index 74bbb887..f1ca43ea 100644 --- a/.ci_support/linux_64_openssl1.1.1.yaml +++ b/.ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml @@ -1,3 +1,5 @@ +arrow_cpp: +- 6.0.2 c_compiler: - gcc c_compiler_version: @@ -10,8 +12,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_64_openssl3.yaml b/.ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml similarity index 98% rename from .ci_support/linux_64_openssl3.yaml rename to .ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml index 62132e27..607f869e 100644 --- a/.ci_support/linux_64_openssl3.yaml +++ b/.ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml @@ -1,3 +1,5 @@ +arrow_cpp: +- 6.0.2 c_compiler: - gcc c_compiler_version: @@ -10,8 +12,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..0dc5929c --- /dev/null +++ b/.ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml @@ -0,0 +1,109 @@ +arrow_cpp: +- 7.0.1 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml new file mode 100644 index 00000000..56280336 --- /dev/null +++ b/.ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml @@ -0,0 +1,109 @@ +arrow_cpp: +- 7.0.1 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..9b41143c --- /dev/null +++ b/.ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml @@ -0,0 +1,109 @@ +arrow_cpp: +- 8.0.1 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml new file mode 100644 index 00000000..58b65358 --- /dev/null +++ b/.ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml @@ -0,0 +1,109 @@ +arrow_cpp: +- 8.0.1 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml new file mode 100644 index 00000000..eb3a0002 --- /dev/null +++ b/.ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml @@ -0,0 +1,109 @@ +arrow_cpp: +- 9.0.0 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml new file mode 100644 index 00000000..87e3cd8b --- /dev/null +++ b/.ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml @@ -0,0 +1,109 @@ +arrow_cpp: +- 9.0.0 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml similarity index 98% rename from .ci_support/linux_aarch64_openssl1.1.1.yaml rename to .ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml index 0ccedf9e..45d2fc84 100644 --- a/.ci_support/linux_aarch64_openssl1.1.1.yaml +++ b/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml @@ -1,5 +1,7 @@ BUILD: - aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 6.0.2 c_compiler: - gcc c_compiler_version: @@ -14,8 +16,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_aarch64_openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml similarity index 98% rename from .ci_support/linux_aarch64_openssl3.yaml rename to .ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml index 451b4a27..d9a627a0 100644 --- a/.ci_support/linux_aarch64_openssl3.yaml +++ b/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml @@ -1,5 +1,7 @@ BUILD: - aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 6.0.2 c_compiler: - gcc c_compiler_version: @@ -14,8 +16,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..81e1357b --- /dev/null +++ b/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml @@ -0,0 +1,113 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 7.0.1 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml new file mode 100644 index 00000000..6f74ec38 --- /dev/null +++ b/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml @@ -0,0 +1,113 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 7.0.1 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..9290fb53 --- /dev/null +++ b/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml @@ -0,0 +1,113 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 8.0.1 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml new file mode 100644 index 00000000..dc857e8e --- /dev/null +++ b/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml @@ -0,0 +1,113 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 8.0.1 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml new file mode 100644 index 00000000..6fa428e8 --- /dev/null +++ b/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml @@ -0,0 +1,113 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 9.0.0 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml new file mode 100644 index 00000000..f229dd2e --- /dev/null +++ b/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml @@ -0,0 +1,113 @@ +BUILD: +- aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 9.0.0 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_arch: +- aarch64 +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-aarch64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml similarity index 98% rename from .ci_support/linux_ppc64le_openssl1.1.1.yaml rename to .ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml index b6609936..5d7761eb 100644 --- a/.ci_support/linux_ppc64le_openssl1.1.1.yaml +++ b/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml @@ -1,3 +1,5 @@ +arrow_cpp: +- 6.0.2 c_compiler: - gcc c_compiler_version: @@ -10,8 +12,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_ppc64le_openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml similarity index 98% rename from .ci_support/linux_ppc64le_openssl3.yaml rename to .ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml index 85aba378..68cac493 100644 --- a/.ci_support/linux_ppc64le_openssl3.yaml +++ b/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml @@ -1,3 +1,5 @@ +arrow_cpp: +- 6.0.2 c_compiler: - gcc c_compiler_version: @@ -10,8 +12,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..1e70cedf --- /dev/null +++ b/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml @@ -0,0 +1,109 @@ +arrow_cpp: +- 7.0.1 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml new file mode 100644 index 00000000..9e548632 --- /dev/null +++ b/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml @@ -0,0 +1,109 @@ +arrow_cpp: +- 7.0.1 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..d3f1dec6 --- /dev/null +++ b/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml @@ -0,0 +1,109 @@ +arrow_cpp: +- 8.0.1 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml new file mode 100644 index 00000000..3143a13b --- /dev/null +++ b/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml @@ -0,0 +1,109 @@ +arrow_cpp: +- 8.0.1 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml new file mode 100644 index 00000000..e9e0c746 --- /dev/null +++ b/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml @@ -0,0 +1,109 @@ +arrow_cpp: +- 9.0.0 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml new file mode 100644 index 00000000..22420cbc --- /dev/null +++ b/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml @@ -0,0 +1,109 @@ +arrow_cpp: +- 9.0.0 +c_compiler: +- gcc +c_compiler_version: +- '11' +cdt_name: +- cos7 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- gxx +cxx_compiler_version: +- '11' +docker_image: +- quay.io/condaforge/linux-anvil-cos7-x86_64 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libuuid: +- '2' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- linux-ppc64le +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml similarity index 98% rename from .ci_support/osx_64_openssl1.1.1.yaml rename to .ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml index e020ca57..1061a37e 100644 --- a/.ci_support/osx_64_openssl1.1.1.yaml +++ b/.ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +arrow_cpp: +- 6.0.2 c_compiler: - clang c_compiler_version: @@ -10,8 +12,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_64_openssl3.yaml b/.ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml similarity index 98% rename from .ci_support/osx_64_openssl3.yaml rename to .ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml index 41b80b0c..2eab7ea7 100644 --- a/.ci_support/osx_64_openssl3.yaml +++ b/.ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +arrow_cpp: +- 6.0.2 c_compiler: - clang c_compiler_version: @@ -10,8 +12,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..a766f636 --- /dev/null +++ b/.ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +arrow_cpp: +- 7.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml new file mode 100644 index 00000000..33934833 --- /dev/null +++ b/.ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +arrow_cpp: +- 7.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..50976ab1 --- /dev/null +++ b/.ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +arrow_cpp: +- 8.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml new file mode 100644 index 00000000..5bf7281c --- /dev/null +++ b/.ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +arrow_cpp: +- 8.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml new file mode 100644 index 00000000..4e0ffebd --- /dev/null +++ b/.ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +arrow_cpp: +- 9.0.0 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml new file mode 100644 index 00000000..d4058941 --- /dev/null +++ b/.ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '10.9' +arrow_cpp: +- 9.0.0 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- x86_64-apple-darwin13.4.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml similarity index 98% rename from .ci_support/osx_arm64_openssl1.1.1.yaml rename to .ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml index 77969a99..f1b6f110 100644 --- a/.ci_support/osx_arm64_openssl1.1.1.yaml +++ b/.ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +arrow_cpp: +- 6.0.2 c_compiler: - clang c_compiler_version: @@ -10,8 +12,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_arm64_openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml similarity index 98% rename from .ci_support/osx_arm64_openssl3.yaml rename to .ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml index 4b7aa770..b0bd0652 100644 --- a/.ci_support/osx_arm64_openssl3.yaml +++ b/.ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +arrow_cpp: +- 6.0.2 c_compiler: - clang c_compiler_version: @@ -10,8 +12,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..90cb0252 --- /dev/null +++ b/.ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +arrow_cpp: +- 7.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml new file mode 100644 index 00000000..8b1a3518 --- /dev/null +++ b/.ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +arrow_cpp: +- 7.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..1741255c --- /dev/null +++ b/.ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +arrow_cpp: +- 8.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml new file mode 100644 index 00000000..a6ee2bb7 --- /dev/null +++ b/.ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +arrow_cpp: +- 8.0.1 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml new file mode 100644 index 00000000..d21d3057 --- /dev/null +++ b/.ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +arrow_cpp: +- 9.0.0 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml new file mode 100644 index 00000000..3fcc6981 --- /dev/null +++ b/.ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml @@ -0,0 +1,107 @@ +MACOSX_DEPLOYMENT_TARGET: +- '11.0' +arrow_cpp: +- 9.0.0 +c_compiler: +- clang +c_compiler_version: +- '14' +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- clangxx +cxx_compiler_version: +- '14' +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +giflib: +- '5.2' +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +json_c: +- '0.16' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +macos_machine: +- arm64-apple-darwin20.0.0 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- osx-arm64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - c_compiler_version + - cxx_compiler_version +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml similarity index 97% rename from .ci_support/win_64_openssl1.1.1.yaml rename to .ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml index 9b982af9..918dc38a 100644 --- a/.ci_support/win_64_openssl1.1.1.yaml +++ b/.ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml @@ -1,3 +1,5 @@ +arrow_cpp: +- 6.0.2 c_compiler: - vs2019 cfitsio: @@ -6,8 +8,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - vs2019 expat: diff --git a/.ci_support/win_64_openssl3.yaml b/.ci_support/win_64_arrow_cpp6.0.2openssl3.yaml similarity index 97% rename from .ci_support/win_64_openssl3.yaml rename to .ci_support/win_64_arrow_cpp6.0.2openssl3.yaml index d29ee9ce..88263811 100644 --- a/.ci_support/win_64_openssl3.yaml +++ b/.ci_support/win_64_arrow_cpp6.0.2openssl3.yaml @@ -1,3 +1,5 @@ +arrow_cpp: +- 6.0.2 c_compiler: - vs2019 cfitsio: @@ -6,8 +8,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - vs2019 expat: diff --git a/.ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..264cb0a2 --- /dev/null +++ b/.ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml @@ -0,0 +1,93 @@ +arrow_cpp: +- 7.0.1 +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/win_64_arrow_cpp7.0.1openssl3.yaml new file mode 100644 index 00000000..ad0b34e9 --- /dev/null +++ b/.ci_support/win_64_arrow_cpp7.0.1openssl3.yaml @@ -0,0 +1,93 @@ +arrow_cpp: +- 7.0.1 +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml new file mode 100644 index 00000000..c393f1d3 --- /dev/null +++ b/.ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml @@ -0,0 +1,93 @@ +arrow_cpp: +- 8.0.1 +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/win_64_arrow_cpp8.0.1openssl3.yaml new file mode 100644 index 00000000..9e4636e5 --- /dev/null +++ b/.ci_support/win_64_arrow_cpp8.0.1openssl3.yaml @@ -0,0 +1,93 @@ +arrow_cpp: +- 8.0.1 +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml new file mode 100644 index 00000000..3bc76cfc --- /dev/null +++ b/.ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml @@ -0,0 +1,93 @@ +arrow_cpp: +- 9.0.0 +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- 1.1.1 +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/.ci_support/win_64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/win_64_arrow_cpp9.0.0openssl3.yaml new file mode 100644 index 00000000..92ff423b --- /dev/null +++ b/.ci_support/win_64_arrow_cpp9.0.0openssl3.yaml @@ -0,0 +1,93 @@ +arrow_cpp: +- 9.0.0 +c_compiler: +- vs2019 +cfitsio: +- 4.2.0 +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +expat: +- '2' +geos: +- 3.11.1 +geotiff: +- 1.7.1 +hdf4: +- 4.2.15 +hdf5: +- 1.12.2 +icu: +- '70' +jpeg: +- '9' +kealib: +- '1.5' +lerc: +- '4' +libcurl: +- '7' +libdeflate: +- '1.14' +libiconv: +- '1' +libkml: +- '1.3' +libnetcdf: +- 4.8.1 +libpng: +- '1.6' +libtiff: +- '4' +libwebp_base: +- '1' +libxml2: +- '2.10' +lz4_c: +- 1.9.3 +numpy: +- '1.21' +- '1.23' +- '1.20' +- '1.20' +openjpeg: +- '2' +openssl: +- '3' +pcre2: +- '10.40' +pin_run_as_build: + poppler: + max_pin: x.x + python: + min_pin: x.x + max_pin: x.x +poppler: +- '22.11' +proj: +- 9.1.0 +python: +- 3.10.* *_cpython +- 3.11.* *_cpython +- 3.8.* *_cpython +- 3.9.* *_cpython +sqlite: +- '3' +target_platform: +- win-64 +tiledb: +- '2.11' +xerces_c: +- '3.2' +xz: +- '5' +zip_keys: +- - python + - numpy +zlib: +- '1.2' +zstd: +- '1.5' diff --git a/README.md b/README.md index 3e35e8d7..1486c009 100644 --- a/README.md +++ b/README.md @@ -27,87 +27,339 @@ Current build status
VariantStatus
linux_64_arrow_cpp6.0.2openssl1.1.1linux_64_openssl1.1.1 - variant + variant
linux_64_arrow_cpp6.0.2openssl3linux_64_openssl3 - variant + variant
linux_64_arrow_cpp7.0.1openssl1.1.1linux_aarch64_openssl1.1.1 - variant + variant
linux_64_arrow_cpp7.0.1openssl3linux_aarch64_openssl3 - variant + variant
linux_64_arrow_cpp8.0.1openssl1.1.1linux_ppc64le_openssl1.1.1 - variant + variant
linux_64_arrow_cpp8.0.1openssl3linux_ppc64le_openssl3 - variant + variant
linux_64_arrow_cpp9.0.0openssl1.1.1osx_64_openssl1.1.1 - variant + variant
linux_64_arrow_cpp9.0.0openssl3osx_64_openssl3 - variant + variant
linux_aarch64_arrow_cpp6.0.2openssl1.1.1osx_arm64_openssl1.1.1 - variant + variant
linux_aarch64_arrow_cpp6.0.2openssl3osx_arm64_openssl3 - variant + variant
linux_aarch64_arrow_cpp7.0.1openssl1.1.1win_64_openssl1.1.1 - variant + variant
linux_aarch64_arrow_cpp7.0.1openssl3win_64_openssl3 - variant - -
linux_aarch64_arrow_cpp8.0.1openssl1.1.1 - - variant - -
linux_aarch64_arrow_cpp8.0.1openssl3 - - variant - -
linux_aarch64_arrow_cpp9.0.0openssl1.1.1 - - variant - -
linux_aarch64_arrow_cpp9.0.0openssl3 - - variant - -
linux_ppc64le_arrow_cpp6.0.2openssl1.1.1 - - variant - -
linux_ppc64le_arrow_cpp6.0.2openssl3 - - variant - -
linux_ppc64le_arrow_cpp7.0.1openssl1.1.1 - - variant - -
linux_ppc64le_arrow_cpp7.0.1openssl3 - - variant - -
linux_ppc64le_arrow_cpp8.0.1openssl1.1.1 - - variant - -
linux_ppc64le_arrow_cpp8.0.1openssl3 - - variant - -
linux_ppc64le_arrow_cpp9.0.0openssl1.1.1 - - variant - -
linux_ppc64le_arrow_cpp9.0.0openssl3 - - variant - -
osx_64_arrow_cpp6.0.2openssl1.1.1 - - variant - -
osx_64_arrow_cpp6.0.2openssl3 - - variant - -
osx_64_arrow_cpp7.0.1openssl1.1.1 - - variant - -
osx_64_arrow_cpp7.0.1openssl3 - - variant - -
osx_64_arrow_cpp8.0.1openssl1.1.1 - - variant - -
osx_64_arrow_cpp8.0.1openssl3 - - variant - -
osx_64_arrow_cpp9.0.0openssl1.1.1 - - variant - -
osx_64_arrow_cpp9.0.0openssl3 - - variant - -
osx_arm64_arrow_cpp6.0.2openssl1.1.1 - - variant - -
osx_arm64_arrow_cpp6.0.2openssl3 - - variant - -
osx_arm64_arrow_cpp7.0.1openssl1.1.1 - - variant - -
osx_arm64_arrow_cpp7.0.1openssl3 - - variant - -
osx_arm64_arrow_cpp8.0.1openssl1.1.1 - - variant - -
osx_arm64_arrow_cpp8.0.1openssl3 - - variant - -
osx_arm64_arrow_cpp9.0.0openssl1.1.1 - - variant - -
osx_arm64_arrow_cpp9.0.0openssl3 - - variant - -
win_64_arrow_cpp6.0.2openssl1.1.1 - - variant - -
win_64_arrow_cpp6.0.2openssl3 - - variant - -
win_64_arrow_cpp7.0.1openssl1.1.1 - - variant - -
win_64_arrow_cpp7.0.1openssl3 - - variant - -
win_64_arrow_cpp8.0.1openssl1.1.1 - - variant - -
win_64_arrow_cpp8.0.1openssl3 - - variant - -
win_64_arrow_cpp9.0.0openssl1.1.1 - - variant - -
win_64_arrow_cpp9.0.0openssl3 - - variant + variant
- + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -125,7 +377,6 @@ Current release info | --- | --- | --- | --- | | [![Conda Recipe](https://img.shields.io/badge/recipe-gdal-green.svg)](https://anaconda.org/conda-forge/gdal) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/gdal.svg)](https://anaconda.org/conda-forge/gdal) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/gdal.svg)](https://anaconda.org/conda-forge/gdal) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/gdal.svg)](https://anaconda.org/conda-forge/gdal) | | [![Conda Recipe](https://img.shields.io/badge/recipe-libgdal-green.svg)](https://anaconda.org/conda-forge/libgdal) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/libgdal.svg)](https://anaconda.org/conda-forge/libgdal) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/libgdal.svg)](https://anaconda.org/conda-forge/libgdal) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/libgdal.svg)](https://anaconda.org/conda-forge/libgdal) | -| [![Conda Recipe](https://img.shields.io/badge/recipe-libgdal--arrow--parquet-green.svg)](https://anaconda.org/conda-forge/libgdal-arrow-parquet) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/libgdal-arrow-parquet.svg)](https://anaconda.org/conda-forge/libgdal-arrow-parquet) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/libgdal-arrow-parquet.svg)](https://anaconda.org/conda-forge/libgdal-arrow-parquet) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/libgdal-arrow-parquet.svg)](https://anaconda.org/conda-forge/libgdal-arrow-parquet) | Installing gdal-split ===================== @@ -137,16 +388,16 @@ conda config --add channels conda-forge conda config --set channel_priority strict ``` -Once the `conda-forge` channel has been enabled, `gdal, libgdal, libgdal-arrow-parquet` can be installed with `conda`: +Once the `conda-forge` channel has been enabled, `gdal, libgdal` can be installed with `conda`: ``` -conda install gdal libgdal libgdal-arrow-parquet +conda install gdal libgdal ``` or with `mamba`: ``` -mamba install gdal libgdal libgdal-arrow-parquet +mamba install gdal libgdal ``` It is possible to list all of the versions of `gdal` available on your platform with `conda`: From 6833adc95ad8068b0956cfbf1e7246d717462fef Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Thu, 8 Dec 2022 10:48:41 +1100 Subject: [PATCH 11/22] manually add arrow_cpp10 migrator --- .ci_support/migrations/arrow_cpp10.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .ci_support/migrations/arrow_cpp10.yaml diff --git a/.ci_support/migrations/arrow_cpp10.yaml b/.ci_support/migrations/arrow_cpp10.yaml new file mode 100644 index 00000000..fde0e858 --- /dev/null +++ b/.ci_support/migrations/arrow_cpp10.yaml @@ -0,0 +1,17 @@ +__migrator: + build_number: 1 + kind: version + migration_number: 1 +arrow_cpp: +- 10.0.1 +- 9.0.0 +- 8.0.1 +- 7.0.1 +# make sure we have same length for zip, even +# though libarrow builds only exist since 10.x +libarrow: +- 10.0.1 +- 9.0.0 +- 8.0.1 +- 7.0.1 +migrator_ts: 1670146930.791868 From 0291c5ff9cff877e671f5a42552a72c566f2dac8 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Fri, 9 Dec 2022 09:46:56 +1100 Subject: [PATCH 12/22] remove arrow from global build deps; build new output for all arrow versions --- recipe/meta.yaml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index c3636415..1c52d765 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,8 +26,6 @@ requirements: - {{ compiler('cxx') }} - sysroot_linux-64 2.17 # [linux64] host: - # libarrow only exists from 10.x - - arrow-cpp # [arrow_cpp != "10.0.1"] - blosc - cfitsio - expat @@ -42,7 +40,6 @@ requirements: - json-c # [not win] - kealib - lerc - - libarrow # [arrow_cpp == "10.0.1"] - libcurl - libdeflate - libiconv @@ -159,8 +156,6 @@ outputs: - name: libgdal-arrow-parquet script: build_arrow_parquet.sh # [unix] script: build_arrow_parquet.bat # [win] - build: - skip: true # [arrow_cpp != "10.0.1"] requirements: build: - cmake @@ -174,8 +169,6 @@ outputs: - sysroot_linux-64 2.17 # [linux64] host: - {{ pin_subpackage('libgdal', exact=True) }} - # libarrow only exists from 10.x - - arrow-cpp # [arrow_cpp != "10.0.1"] - blosc - cfitsio - curl @@ -190,7 +183,7 @@ outputs: - jpeg - json-c # [not win] - kealib - - libarrow # [arrow_cpp == "10.0.1"] + - arrow-cpp - libkml - libnetcdf - libpng From f264909cf7ee5ef5a021f22f5dd52477493900a7 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Fri, 9 Dec 2022 10:12:11 +1100 Subject: [PATCH 13/22] MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2022.12.08.16.56.34 --- .azure-pipelines/azure-pipelines-linux.yml | 96 +----- .azure-pipelines/azure-pipelines-osx.yml | 52 +-- .azure-pipelines/azure-pipelines-win.yml | 30 +- .../linux_64_arrow_cpp6.0.2openssl1.1.1.yaml | 109 ------- .../linux_64_arrow_cpp6.0.2openssl3.yaml | 109 ------- .../linux_64_arrow_cpp7.0.1openssl1.1.1.yaml | 109 ------- .../linux_64_arrow_cpp7.0.1openssl3.yaml | 109 ------- .../linux_64_arrow_cpp8.0.1openssl1.1.1.yaml | 109 ------- .../linux_64_arrow_cpp8.0.1openssl3.yaml | 109 ------- ...l1.1.1.yaml => linux_64_openssl1.1.1.yaml} | 5 + ....0openssl3.yaml => linux_64_openssl3.yaml} | 5 + ...ux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml | 113 ------- .../linux_aarch64_arrow_cpp6.0.2openssl3.yaml | 113 ------- ...ux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml | 113 ------- .../linux_aarch64_arrow_cpp7.0.1openssl3.yaml | 113 ------- ...ux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml | 113 ------- .../linux_aarch64_arrow_cpp9.0.0openssl3.yaml | 113 ------- ...1.yaml => linux_aarch64_openssl1.1.1.yaml} | 5 + ...nssl3.yaml => linux_aarch64_openssl3.yaml} | 5 + ...ux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml | 109 ------- .../linux_ppc64le_arrow_cpp6.0.2openssl3.yaml | 109 ------- .../linux_ppc64le_arrow_cpp7.0.1openssl3.yaml | 109 ------- ...ux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml | 109 ------- ...ux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml | 109 ------- .../linux_ppc64le_arrow_cpp9.0.0openssl3.yaml | 109 ------- ...1.yaml => linux_ppc64le_openssl1.1.1.yaml} | 5 + ...nssl3.yaml => linux_ppc64le_openssl3.yaml} | 5 + .ci_support/migrations/geos3111.yaml | 7 - .../osx_64_arrow_cpp6.0.2openssl1.1.1.yaml | 107 ------ .../osx_64_arrow_cpp6.0.2openssl3.yaml | 107 ------ .../osx_64_arrow_cpp7.0.1openssl1.1.1.yaml | 107 ------ .../osx_64_arrow_cpp7.0.1openssl3.yaml | 107 ------ .../osx_64_arrow_cpp8.0.1openssl1.1.1.yaml | 107 ------ .../osx_64_arrow_cpp8.0.1openssl3.yaml | 107 ------ ...ssl1.1.1.yaml => osx_64_openssl1.1.1.yaml} | 5 + ....0.0openssl3.yaml => osx_64_openssl3.yaml} | 5 + .../osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml | 107 ------ .../osx_arm64_arrow_cpp6.0.2openssl3.yaml | 107 ------ .../osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml | 107 ------ .../osx_arm64_arrow_cpp7.0.1openssl3.yaml | 107 ------ .../osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml | 107 ------ .../osx_arm64_arrow_cpp9.0.0openssl3.yaml | 107 ------ ...1.1.1.yaml => osx_arm64_openssl1.1.1.yaml} | 5 + ...1openssl3.yaml => osx_arm64_openssl3.yaml} | 5 + .../win_64_arrow_cpp6.0.2openssl1.1.1.yaml | 93 ------ .../win_64_arrow_cpp6.0.2openssl3.yaml | 93 ------ .../win_64_arrow_cpp7.0.1openssl1.1.1.yaml | 93 ------ .../win_64_arrow_cpp7.0.1openssl3.yaml | 93 ------ .../win_64_arrow_cpp9.0.0openssl1.1.1.yaml | 93 ------ .../win_64_arrow_cpp9.0.0openssl3.yaml | 93 ------ ...ssl1.1.1.yaml => win_64_openssl1.1.1.yaml} | 5 + ....0.1openssl3.yaml => win_64_openssl3.yaml} | 5 + README.md | 307 ++---------------- 53 files changed, 116 insertions(+), 4264 deletions(-) delete mode 100644 .ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml delete mode 100644 .ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml delete mode 100644 .ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml delete mode 100644 .ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml rename .ci_support/{linux_64_arrow_cpp9.0.0openssl1.1.1.yaml => linux_64_openssl1.1.1.yaml} (96%) rename .ci_support/{linux_64_arrow_cpp9.0.0openssl3.yaml => linux_64_openssl3.yaml} (96%) delete mode 100644 .ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml delete mode 100644 .ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml delete mode 100644 .ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml delete mode 100644 .ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml delete mode 100644 .ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml => linux_aarch64_openssl1.1.1.yaml} (96%) rename .ci_support/{linux_aarch64_arrow_cpp8.0.1openssl3.yaml => linux_aarch64_openssl3.yaml} (96%) delete mode 100644 .ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml delete mode 100644 .ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml delete mode 100644 .ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml delete mode 100644 .ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml delete mode 100644 .ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml => linux_ppc64le_openssl1.1.1.yaml} (96%) rename .ci_support/{linux_ppc64le_arrow_cpp8.0.1openssl3.yaml => linux_ppc64le_openssl3.yaml} (96%) delete mode 100644 .ci_support/migrations/geos3111.yaml delete mode 100644 .ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml delete mode 100644 .ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml delete mode 100644 .ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml delete mode 100644 .ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml rename .ci_support/{osx_64_arrow_cpp9.0.0openssl1.1.1.yaml => osx_64_openssl1.1.1.yaml} (96%) rename .ci_support/{osx_64_arrow_cpp9.0.0openssl3.yaml => osx_64_openssl3.yaml} (96%) delete mode 100644 .ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml delete mode 100644 .ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml delete mode 100644 .ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml delete mode 100644 .ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml delete mode 100644 .ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml => osx_arm64_openssl1.1.1.yaml} (96%) rename .ci_support/{osx_arm64_arrow_cpp8.0.1openssl3.yaml => osx_arm64_openssl3.yaml} (96%) delete mode 100644 .ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml delete mode 100644 .ci_support/win_64_arrow_cpp6.0.2openssl3.yaml delete mode 100644 .ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml delete mode 100644 .ci_support/win_64_arrow_cpp7.0.1openssl3.yaml delete mode 100644 .ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml delete mode 100644 .ci_support/win_64_arrow_cpp9.0.0openssl3.yaml rename .ci_support/{win_64_arrow_cpp8.0.1openssl1.1.1.yaml => win_64_openssl1.1.1.yaml} (95%) rename .ci_support/{win_64_arrow_cpp8.0.1openssl3.yaml => win_64_openssl3.yaml} (95%) diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 6fabfc32..fd96606e 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -8,100 +8,28 @@ jobs: vmImage: ubuntu-latest strategy: matrix: - linux_64_arrow_cpp6.0.2openssl1.1.1: - CONFIG: linux_64_arrow_cpp6.0.2openssl1.1.1 + linux_64_openssl1.1.1: + CONFIG: linux_64_openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp6.0.2openssl3: - CONFIG: linux_64_arrow_cpp6.0.2openssl3 + linux_64_openssl3: + CONFIG: linux_64_openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp7.0.1openssl1.1.1: - CONFIG: linux_64_arrow_cpp7.0.1openssl1.1.1 + linux_aarch64_openssl1.1.1: + CONFIG: linux_aarch64_openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp7.0.1openssl3: - CONFIG: linux_64_arrow_cpp7.0.1openssl3 + linux_aarch64_openssl3: + CONFIG: linux_aarch64_openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp8.0.1openssl1.1.1: - CONFIG: linux_64_arrow_cpp8.0.1openssl1.1.1 + linux_ppc64le_openssl1.1.1: + CONFIG: linux_ppc64le_openssl1.1.1 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp8.0.1openssl3: - CONFIG: linux_64_arrow_cpp8.0.1openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp9.0.0openssl1.1.1: - CONFIG: linux_64_arrow_cpp9.0.0openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_64_arrow_cpp9.0.0openssl3: - CONFIG: linux_64_arrow_cpp9.0.0openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp6.0.2openssl1.1.1: - CONFIG: linux_aarch64_arrow_cpp6.0.2openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp6.0.2openssl3: - CONFIG: linux_aarch64_arrow_cpp6.0.2openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp7.0.1openssl1.1.1: - CONFIG: linux_aarch64_arrow_cpp7.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp7.0.1openssl3: - CONFIG: linux_aarch64_arrow_cpp7.0.1openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp8.0.1openssl1.1.1: - CONFIG: linux_aarch64_arrow_cpp8.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp8.0.1openssl3: - CONFIG: linux_aarch64_arrow_cpp8.0.1openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp9.0.0openssl1.1.1: - CONFIG: linux_aarch64_arrow_cpp9.0.0openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_arrow_cpp9.0.0openssl3: - CONFIG: linux_aarch64_arrow_cpp9.0.0openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp6.0.2openssl1.1.1: - CONFIG: linux_ppc64le_arrow_cpp6.0.2openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp6.0.2openssl3: - CONFIG: linux_ppc64le_arrow_cpp6.0.2openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp7.0.1openssl1.1.1: - CONFIG: linux_ppc64le_arrow_cpp7.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp7.0.1openssl3: - CONFIG: linux_ppc64le_arrow_cpp7.0.1openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp8.0.1openssl1.1.1: - CONFIG: linux_ppc64le_arrow_cpp8.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp8.0.1openssl3: - CONFIG: linux_ppc64le_arrow_cpp8.0.1openssl3 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp9.0.0openssl1.1.1: - CONFIG: linux_ppc64le_arrow_cpp9.0.0openssl1.1.1 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_arrow_cpp9.0.0openssl3: - CONFIG: linux_ppc64le_arrow_cpp9.0.0openssl3 + linux_ppc64le_openssl3: + CONFIG: linux_ppc64le_openssl3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 timeoutInMinutes: 360 diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index d53fecb5..5fa9ba9c 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -8,53 +8,17 @@ jobs: vmImage: macOS-11 strategy: matrix: - osx_64_arrow_cpp6.0.2openssl1.1.1: - CONFIG: osx_64_arrow_cpp6.0.2openssl1.1.1 + osx_64_openssl1.1.1: + CONFIG: osx_64_openssl1.1.1 UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp6.0.2openssl3: - CONFIG: osx_64_arrow_cpp6.0.2openssl3 + osx_64_openssl3: + CONFIG: osx_64_openssl3 UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp7.0.1openssl1.1.1: - CONFIG: osx_64_arrow_cpp7.0.1openssl1.1.1 + osx_arm64_openssl1.1.1: + CONFIG: osx_arm64_openssl1.1.1 UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp7.0.1openssl3: - CONFIG: osx_64_arrow_cpp7.0.1openssl3 - UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp8.0.1openssl1.1.1: - CONFIG: osx_64_arrow_cpp8.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp8.0.1openssl3: - CONFIG: osx_64_arrow_cpp8.0.1openssl3 - UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp9.0.0openssl1.1.1: - CONFIG: osx_64_arrow_cpp9.0.0openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_64_arrow_cpp9.0.0openssl3: - CONFIG: osx_64_arrow_cpp9.0.0openssl3 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp6.0.2openssl1.1.1: - CONFIG: osx_arm64_arrow_cpp6.0.2openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp6.0.2openssl3: - CONFIG: osx_arm64_arrow_cpp6.0.2openssl3 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp7.0.1openssl1.1.1: - CONFIG: osx_arm64_arrow_cpp7.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp7.0.1openssl3: - CONFIG: osx_arm64_arrow_cpp7.0.1openssl3 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp8.0.1openssl1.1.1: - CONFIG: osx_arm64_arrow_cpp8.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp8.0.1openssl3: - CONFIG: osx_arm64_arrow_cpp8.0.1openssl3 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp9.0.0openssl1.1.1: - CONFIG: osx_arm64_arrow_cpp9.0.0openssl1.1.1 - UPLOAD_PACKAGES: 'True' - osx_arm64_arrow_cpp9.0.0openssl3: - CONFIG: osx_arm64_arrow_cpp9.0.0openssl3 + osx_arm64_openssl3: + CONFIG: osx_arm64_openssl3 UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 0af202a1..25dc3e9a 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,33 +8,16 @@ jobs: vmImage: windows-2019 strategy: matrix: - win_64_arrow_cpp6.0.2openssl1.1.1: - CONFIG: win_64_arrow_cpp6.0.2openssl1.1.1 + win_64_openssl1.1.1: + CONFIG: win_64_openssl1.1.1 UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp6.0.2openssl3: - CONFIG: win_64_arrow_cpp6.0.2openssl3 - UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp7.0.1openssl1.1.1: - CONFIG: win_64_arrow_cpp7.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp7.0.1openssl3: - CONFIG: win_64_arrow_cpp7.0.1openssl3 - UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp8.0.1openssl1.1.1: - CONFIG: win_64_arrow_cpp8.0.1openssl1.1.1 - UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp8.0.1openssl3: - CONFIG: win_64_arrow_cpp8.0.1openssl3 - UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp9.0.0openssl1.1.1: - CONFIG: win_64_arrow_cpp9.0.0openssl1.1.1 - UPLOAD_PACKAGES: 'True' - win_64_arrow_cpp9.0.0openssl3: - CONFIG: win_64_arrow_cpp9.0.0openssl3 + win_64_openssl3: + CONFIG: win_64_openssl3 UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 variables: CONDA_BLD_PATH: D:\\bld\\ + UPLOAD_TEMP: D:\\tmp steps: - task: PythonScript@0 @@ -93,6 +76,9 @@ jobs: - script: | set "GIT_BRANCH=%BUILD_SOURCEBRANCHNAME%" set "FEEDSTOCK_NAME=%BUILD_REPOSITORY_NAME:*/=%" + set "TEMP=$(UPLOAD_TEMP)" + if not exist "%TEMP%\" md "%TEMP%" + set "TMP=%TEMP%" call activate base upload_package --validate --feedstock-name="%FEEDSTOCK_NAME%" .\ ".\recipe" .ci_support\%CONFIG%.yaml displayName: Upload package diff --git a/.ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml deleted file mode 100644 index f1ca43ea..00000000 --- a/.ci_support/linux_64_arrow_cpp6.0.2openssl1.1.1.yaml +++ /dev/null @@ -1,109 +0,0 @@ -arrow_cpp: -- 6.0.2 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml b/.ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml deleted file mode 100644 index 607f869e..00000000 --- a/.ci_support/linux_64_arrow_cpp6.0.2openssl3.yaml +++ /dev/null @@ -1,109 +0,0 @@ -arrow_cpp: -- 6.0.2 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml deleted file mode 100644 index 0dc5929c..00000000 --- a/.ci_support/linux_64_arrow_cpp7.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,109 +0,0 @@ -arrow_cpp: -- 7.0.1 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml deleted file mode 100644 index 56280336..00000000 --- a/.ci_support/linux_64_arrow_cpp7.0.1openssl3.yaml +++ /dev/null @@ -1,109 +0,0 @@ -arrow_cpp: -- 7.0.1 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml deleted file mode 100644 index 9b41143c..00000000 --- a/.ci_support/linux_64_arrow_cpp8.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,109 +0,0 @@ -arrow_cpp: -- 8.0.1 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml deleted file mode 100644 index 58b65358..00000000 --- a/.ci_support/linux_64_arrow_cpp8.0.1openssl3.yaml +++ /dev/null @@ -1,109 +0,0 @@ -arrow_cpp: -- 8.0.1 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/linux_64_openssl1.1.1.yaml similarity index 96% rename from .ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml rename to .ci_support/linux_64_openssl1.1.1.yaml index eb3a0002..285d90c8 100644 --- a/.ci_support/linux_64_arrow_cpp9.0.0openssl1.1.1.yaml +++ b/.ci_support/linux_64_openssl1.1.1.yaml @@ -1,4 +1,7 @@ arrow_cpp: +- 10.0.1 +- 7.0.1 +- 8.0.1 - 9.0.0 c_compiler: - gcc @@ -12,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/linux_64_openssl3.yaml similarity index 96% rename from .ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml rename to .ci_support/linux_64_openssl3.yaml index 87e3cd8b..15f0e8c8 100644 --- a/.ci_support/linux_64_arrow_cpp9.0.0openssl3.yaml +++ b/.ci_support/linux_64_openssl3.yaml @@ -1,4 +1,7 @@ arrow_cpp: +- 10.0.1 +- 7.0.1 +- 8.0.1 - 9.0.0 c_compiler: - gcc @@ -12,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml deleted file mode 100644 index 45d2fc84..00000000 --- a/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl1.1.1.yaml +++ /dev/null @@ -1,113 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 6.0.2 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml deleted file mode 100644 index d9a627a0..00000000 --- a/.ci_support/linux_aarch64_arrow_cpp6.0.2openssl3.yaml +++ /dev/null @@ -1,113 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 6.0.2 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml deleted file mode 100644 index 81e1357b..00000000 --- a/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,113 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 7.0.1 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml deleted file mode 100644 index 6f74ec38..00000000 --- a/.ci_support/linux_aarch64_arrow_cpp7.0.1openssl3.yaml +++ /dev/null @@ -1,113 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 7.0.1 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml deleted file mode 100644 index 6fa428e8..00000000 --- a/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl1.1.1.yaml +++ /dev/null @@ -1,113 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml deleted file mode 100644 index f229dd2e..00000000 --- a/.ci_support/linux_aarch64_arrow_cpp9.0.0openssl3.yaml +++ /dev/null @@ -1,113 +0,0 @@ -BUILD: -- aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_arch: -- aarch64 -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-aarch64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/linux_aarch64_openssl1.1.1.yaml similarity index 96% rename from .ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml rename to .ci_support/linux_aarch64_openssl1.1.1.yaml index 9290fb53..47e85720 100644 --- a/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl1.1.1.yaml +++ b/.ci_support/linux_aarch64_openssl1.1.1.yaml @@ -1,7 +1,10 @@ BUILD: - aarch64-conda_cos7-linux-gnu arrow_cpp: +- 10.0.1 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: @@ -16,6 +19,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/linux_aarch64_openssl3.yaml similarity index 96% rename from .ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml rename to .ci_support/linux_aarch64_openssl3.yaml index dc857e8e..9e5603ee 100644 --- a/.ci_support/linux_aarch64_arrow_cpp8.0.1openssl3.yaml +++ b/.ci_support/linux_aarch64_openssl3.yaml @@ -1,7 +1,10 @@ BUILD: - aarch64-conda_cos7-linux-gnu arrow_cpp: +- 10.0.1 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: @@ -16,6 +19,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml deleted file mode 100644 index 5d7761eb..00000000 --- a/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl1.1.1.yaml +++ /dev/null @@ -1,109 +0,0 @@ -arrow_cpp: -- 6.0.2 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml deleted file mode 100644 index 68cac493..00000000 --- a/.ci_support/linux_ppc64le_arrow_cpp6.0.2openssl3.yaml +++ /dev/null @@ -1,109 +0,0 @@ -arrow_cpp: -- 6.0.2 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml deleted file mode 100644 index 9e548632..00000000 --- a/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl3.yaml +++ /dev/null @@ -1,109 +0,0 @@ -arrow_cpp: -- 7.0.1 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml deleted file mode 100644 index d3f1dec6..00000000 --- a/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,109 +0,0 @@ -arrow_cpp: -- 8.0.1 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml deleted file mode 100644 index e9e0c746..00000000 --- a/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl1.1.1.yaml +++ /dev/null @@ -1,109 +0,0 @@ -arrow_cpp: -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml b/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml deleted file mode 100644 index 22420cbc..00000000 --- a/.ci_support/linux_ppc64le_arrow_cpp9.0.0openssl3.yaml +++ /dev/null @@ -1,109 +0,0 @@ -arrow_cpp: -- 9.0.0 -c_compiler: -- gcc -c_compiler_version: -- '11' -cdt_name: -- cos7 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- gxx -cxx_compiler_version: -- '11' -docker_image: -- quay.io/condaforge/linux-anvil-cos7-x86_64 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libuuid: -- '2' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- linux-ppc64le -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/linux_ppc64le_openssl1.1.1.yaml similarity index 96% rename from .ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml rename to .ci_support/linux_ppc64le_openssl1.1.1.yaml index 1e70cedf..fed55dd8 100644 --- a/.ci_support/linux_ppc64le_arrow_cpp7.0.1openssl1.1.1.yaml +++ b/.ci_support/linux_ppc64le_openssl1.1.1.yaml @@ -1,5 +1,8 @@ arrow_cpp: +- 10.0.1 - 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: @@ -12,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml b/.ci_support/linux_ppc64le_openssl3.yaml similarity index 96% rename from .ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml rename to .ci_support/linux_ppc64le_openssl3.yaml index 3143a13b..0984ee45 100644 --- a/.ci_support/linux_ppc64le_arrow_cpp8.0.1openssl3.yaml +++ b/.ci_support/linux_ppc64le_openssl3.yaml @@ -1,5 +1,8 @@ arrow_cpp: +- 10.0.1 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: @@ -12,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/migrations/geos3111.yaml b/.ci_support/migrations/geos3111.yaml deleted file mode 100644 index a3adb096..00000000 --- a/.ci_support/migrations/geos3111.yaml +++ /dev/null @@ -1,7 +0,0 @@ -__migrator: - build_number: 1 - kind: version - migration_number: 1 -geos: -- 3.11.1 -migrator_ts: 1668475747.7562244 diff --git a/.ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml deleted file mode 100644 index 1061a37e..00000000 --- a/.ci_support/osx_64_arrow_cpp6.0.2openssl1.1.1.yaml +++ /dev/null @@ -1,107 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 6.0.2 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml b/.ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml deleted file mode 100644 index 2eab7ea7..00000000 --- a/.ci_support/osx_64_arrow_cpp6.0.2openssl3.yaml +++ /dev/null @@ -1,107 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 6.0.2 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml deleted file mode 100644 index a766f636..00000000 --- a/.ci_support/osx_64_arrow_cpp7.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,107 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 7.0.1 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml deleted file mode 100644 index 33934833..00000000 --- a/.ci_support/osx_64_arrow_cpp7.0.1openssl3.yaml +++ /dev/null @@ -1,107 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 7.0.1 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml deleted file mode 100644 index 50976ab1..00000000 --- a/.ci_support/osx_64_arrow_cpp8.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,107 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 8.0.1 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml deleted file mode 100644 index 5bf7281c..00000000 --- a/.ci_support/osx_64_arrow_cpp8.0.1openssl3.yaml +++ /dev/null @@ -1,107 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '10.9' -arrow_cpp: -- 8.0.1 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- x86_64-apple-darwin13.4.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/osx_64_openssl1.1.1.yaml similarity index 96% rename from .ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml rename to .ci_support/osx_64_openssl1.1.1.yaml index 4e0ffebd..53f06d5e 100644 --- a/.ci_support/osx_64_arrow_cpp9.0.0openssl1.1.1.yaml +++ b/.ci_support/osx_64_openssl1.1.1.yaml @@ -1,6 +1,9 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' arrow_cpp: +- 10.0.1 +- 7.0.1 +- 8.0.1 - 9.0.0 c_compiler: - clang @@ -12,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/osx_64_openssl3.yaml similarity index 96% rename from .ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml rename to .ci_support/osx_64_openssl3.yaml index d4058941..e1284f77 100644 --- a/.ci_support/osx_64_arrow_cpp9.0.0openssl3.yaml +++ b/.ci_support/osx_64_openssl3.yaml @@ -1,6 +1,9 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' arrow_cpp: +- 10.0.1 +- 7.0.1 +- 8.0.1 - 9.0.0 c_compiler: - clang @@ -12,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml deleted file mode 100644 index f1b6f110..00000000 --- a/.ci_support/osx_arm64_arrow_cpp6.0.2openssl1.1.1.yaml +++ /dev/null @@ -1,107 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 6.0.2 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml deleted file mode 100644 index b0bd0652..00000000 --- a/.ci_support/osx_arm64_arrow_cpp6.0.2openssl3.yaml +++ /dev/null @@ -1,107 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 6.0.2 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml deleted file mode 100644 index 90cb0252..00000000 --- a/.ci_support/osx_arm64_arrow_cpp7.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,107 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 7.0.1 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml deleted file mode 100644 index 8b1a3518..00000000 --- a/.ci_support/osx_arm64_arrow_cpp7.0.1openssl3.yaml +++ /dev/null @@ -1,107 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 7.0.1 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml deleted file mode 100644 index d21d3057..00000000 --- a/.ci_support/osx_arm64_arrow_cpp9.0.0openssl1.1.1.yaml +++ /dev/null @@ -1,107 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 9.0.0 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml deleted file mode 100644 index 3fcc6981..00000000 --- a/.ci_support/osx_arm64_arrow_cpp9.0.0openssl3.yaml +++ /dev/null @@ -1,107 +0,0 @@ -MACOSX_DEPLOYMENT_TARGET: -- '11.0' -arrow_cpp: -- 9.0.0 -c_compiler: -- clang -c_compiler_version: -- '14' -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- clangxx -cxx_compiler_version: -- '14' -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -giflib: -- '5.2' -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -json_c: -- '0.16' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -macos_machine: -- arm64-apple-darwin20.0.0 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- osx-arm64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - c_compiler_version - - cxx_compiler_version -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/osx_arm64_openssl1.1.1.yaml similarity index 96% rename from .ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml rename to .ci_support/osx_arm64_openssl1.1.1.yaml index 1741255c..25bd3c0a 100644 --- a/.ci_support/osx_arm64_arrow_cpp8.0.1openssl1.1.1.yaml +++ b/.ci_support/osx_arm64_openssl1.1.1.yaml @@ -1,7 +1,10 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' arrow_cpp: +- 10.0.1 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - clang c_compiler_version: @@ -12,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/osx_arm64_openssl3.yaml similarity index 96% rename from .ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml rename to .ci_support/osx_arm64_openssl3.yaml index a6ee2bb7..352f61f4 100644 --- a/.ci_support/osx_arm64_arrow_cpp8.0.1openssl3.yaml +++ b/.ci_support/osx_arm64_openssl3.yaml @@ -1,7 +1,10 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' arrow_cpp: +- 10.0.1 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - clang c_compiler_version: @@ -12,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml deleted file mode 100644 index 918dc38a..00000000 --- a/.ci_support/win_64_arrow_cpp6.0.2openssl1.1.1.yaml +++ /dev/null @@ -1,93 +0,0 @@ -arrow_cpp: -- 6.0.2 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_arrow_cpp6.0.2openssl3.yaml b/.ci_support/win_64_arrow_cpp6.0.2openssl3.yaml deleted file mode 100644 index 88263811..00000000 --- a/.ci_support/win_64_arrow_cpp6.0.2openssl3.yaml +++ /dev/null @@ -1,93 +0,0 @@ -arrow_cpp: -- 6.0.2 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml deleted file mode 100644 index 264cb0a2..00000000 --- a/.ci_support/win_64_arrow_cpp7.0.1openssl1.1.1.yaml +++ /dev/null @@ -1,93 +0,0 @@ -arrow_cpp: -- 7.0.1 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_arrow_cpp7.0.1openssl3.yaml b/.ci_support/win_64_arrow_cpp7.0.1openssl3.yaml deleted file mode 100644 index ad0b34e9..00000000 --- a/.ci_support/win_64_arrow_cpp7.0.1openssl3.yaml +++ /dev/null @@ -1,93 +0,0 @@ -arrow_cpp: -- 7.0.1 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml b/.ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml deleted file mode 100644 index 3bc76cfc..00000000 --- a/.ci_support/win_64_arrow_cpp9.0.0openssl1.1.1.yaml +++ /dev/null @@ -1,93 +0,0 @@ -arrow_cpp: -- 9.0.0 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- 1.1.1 -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_arrow_cpp9.0.0openssl3.yaml b/.ci_support/win_64_arrow_cpp9.0.0openssl3.yaml deleted file mode 100644 index 92ff423b..00000000 --- a/.ci_support/win_64_arrow_cpp9.0.0openssl3.yaml +++ /dev/null @@ -1,93 +0,0 @@ -arrow_cpp: -- 9.0.0 -c_compiler: -- vs2019 -cfitsio: -- 4.2.0 -channel_sources: -- conda-forge -channel_targets: -- conda-forge main -cxx_compiler: -- vs2019 -expat: -- '2' -geos: -- 3.11.1 -geotiff: -- 1.7.1 -hdf4: -- 4.2.15 -hdf5: -- 1.12.2 -icu: -- '70' -jpeg: -- '9' -kealib: -- '1.5' -lerc: -- '4' -libcurl: -- '7' -libdeflate: -- '1.14' -libiconv: -- '1' -libkml: -- '1.3' -libnetcdf: -- 4.8.1 -libpng: -- '1.6' -libtiff: -- '4' -libwebp_base: -- '1' -libxml2: -- '2.10' -lz4_c: -- 1.9.3 -numpy: -- '1.21' -- '1.23' -- '1.20' -- '1.20' -openjpeg: -- '2' -openssl: -- '3' -pcre2: -- '10.40' -pin_run_as_build: - poppler: - max_pin: x.x - python: - min_pin: x.x - max_pin: x.x -poppler: -- '22.11' -proj: -- 9.1.0 -python: -- 3.10.* *_cpython -- 3.11.* *_cpython -- 3.8.* *_cpython -- 3.9.* *_cpython -sqlite: -- '3' -target_platform: -- win-64 -tiledb: -- '2.11' -xerces_c: -- '3.2' -xz: -- '5' -zip_keys: -- - python - - numpy -zlib: -- '1.2' -zstd: -- '1.5' diff --git a/.ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml b/.ci_support/win_64_openssl1.1.1.yaml similarity index 95% rename from .ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml rename to .ci_support/win_64_openssl1.1.1.yaml index c393f1d3..1c6f609a 100644 --- a/.ci_support/win_64_arrow_cpp8.0.1openssl1.1.1.yaml +++ b/.ci_support/win_64_openssl1.1.1.yaml @@ -1,5 +1,8 @@ arrow_cpp: +- 10.0.1 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - vs2019 cfitsio: @@ -8,6 +11,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - vs2019 expat: diff --git a/.ci_support/win_64_arrow_cpp8.0.1openssl3.yaml b/.ci_support/win_64_openssl3.yaml similarity index 95% rename from .ci_support/win_64_arrow_cpp8.0.1openssl3.yaml rename to .ci_support/win_64_openssl3.yaml index 9e4636e5..e7203170 100644 --- a/.ci_support/win_64_arrow_cpp8.0.1openssl3.yaml +++ b/.ci_support/win_64_openssl3.yaml @@ -1,5 +1,8 @@ arrow_cpp: +- 10.0.1 +- 7.0.1 - 8.0.1 +- 9.0.0 c_compiler: - vs2019 cfitsio: @@ -8,6 +11,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - vs2019 expat: diff --git a/README.md b/README.md index 1486c009..3e35e8d7 100644 --- a/README.md +++ b/README.md @@ -27,339 +27,87 @@ Current build status
VariantStatus
linux_64_openssl1.1.1linux_64_arrow_cpp6.0.2openssl1.1.1 - variant + variant
linux_64_openssl3linux_64_arrow_cpp6.0.2openssl3 - variant + variant
linux_aarch64_openssl1.1.1linux_64_arrow_cpp7.0.1openssl1.1.1 - variant + variant
linux_aarch64_openssl3linux_64_arrow_cpp7.0.1openssl3 - variant + variant
linux_ppc64le_openssl1.1.1linux_64_arrow_cpp8.0.1openssl1.1.1 - variant + variant
linux_ppc64le_openssl3linux_64_arrow_cpp8.0.1openssl3 - variant + variant
osx_64_openssl1.1.1linux_64_arrow_cpp9.0.0openssl1.1.1 - variant + variant
osx_64_openssl3linux_64_arrow_cpp9.0.0openssl3 - variant + variant
osx_arm64_openssl1.1.1linux_aarch64_arrow_cpp6.0.2openssl1.1.1 - variant + variant
osx_arm64_openssl3linux_aarch64_arrow_cpp6.0.2openssl3 - variant + variant
win_64_openssl1.1.1linux_aarch64_arrow_cpp7.0.1openssl1.1.1 - variant + variant
win_64_openssl3linux_aarch64_arrow_cpp7.0.1openssl3 - variant + variant + +
linux_aarch64_arrow_cpp8.0.1openssl1.1.1 + + variant + +
linux_aarch64_arrow_cpp8.0.1openssl3 + + variant + +
linux_aarch64_arrow_cpp9.0.0openssl1.1.1 + + variant + +
linux_aarch64_arrow_cpp9.0.0openssl3 + + variant + +
linux_ppc64le_arrow_cpp6.0.2openssl1.1.1 + + variant + +
linux_ppc64le_arrow_cpp6.0.2openssl3 + + variant + +
linux_ppc64le_arrow_cpp7.0.1openssl1.1.1 + + variant + +
linux_ppc64le_arrow_cpp7.0.1openssl3 + + variant + +
linux_ppc64le_arrow_cpp8.0.1openssl1.1.1 + + variant + +
linux_ppc64le_arrow_cpp8.0.1openssl3 + + variant + +
linux_ppc64le_arrow_cpp9.0.0openssl1.1.1 + + variant + +
linux_ppc64le_arrow_cpp9.0.0openssl3 + + variant + +
osx_64_arrow_cpp6.0.2openssl1.1.1 + + variant + +
osx_64_arrow_cpp6.0.2openssl3 + + variant + +
osx_64_arrow_cpp7.0.1openssl1.1.1 + + variant + +
osx_64_arrow_cpp7.0.1openssl3 + + variant + +
osx_64_arrow_cpp8.0.1openssl1.1.1 + + variant + +
osx_64_arrow_cpp8.0.1openssl3 + + variant + +
osx_64_arrow_cpp9.0.0openssl1.1.1 + + variant + +
osx_64_arrow_cpp9.0.0openssl3 + + variant + +
osx_arm64_arrow_cpp6.0.2openssl1.1.1 + + variant + +
osx_arm64_arrow_cpp6.0.2openssl3 + + variant + +
osx_arm64_arrow_cpp7.0.1openssl1.1.1 + + variant + +
osx_arm64_arrow_cpp7.0.1openssl3 + + variant + +
osx_arm64_arrow_cpp8.0.1openssl1.1.1 + + variant + +
osx_arm64_arrow_cpp8.0.1openssl3 + + variant + +
osx_arm64_arrow_cpp9.0.0openssl1.1.1 + + variant + +
osx_arm64_arrow_cpp9.0.0openssl3 + + variant + +
win_64_arrow_cpp6.0.2openssl1.1.1 + + variant + +
win_64_arrow_cpp6.0.2openssl3 + + variant + +
win_64_arrow_cpp7.0.1openssl1.1.1 + + variant + +
win_64_arrow_cpp7.0.1openssl3 + + variant + +
win_64_arrow_cpp8.0.1openssl1.1.1 + + variant + +
win_64_arrow_cpp8.0.1openssl3 + + variant + +
win_64_arrow_cpp9.0.0openssl1.1.1 + + variant + +
win_64_arrow_cpp9.0.0openssl3 + + variant
- + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -377,6 +125,7 @@ Current release info | --- | --- | --- | --- | | [![Conda Recipe](https://img.shields.io/badge/recipe-gdal-green.svg)](https://anaconda.org/conda-forge/gdal) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/gdal.svg)](https://anaconda.org/conda-forge/gdal) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/gdal.svg)](https://anaconda.org/conda-forge/gdal) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/gdal.svg)](https://anaconda.org/conda-forge/gdal) | | [![Conda Recipe](https://img.shields.io/badge/recipe-libgdal-green.svg)](https://anaconda.org/conda-forge/libgdal) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/libgdal.svg)](https://anaconda.org/conda-forge/libgdal) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/libgdal.svg)](https://anaconda.org/conda-forge/libgdal) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/libgdal.svg)](https://anaconda.org/conda-forge/libgdal) | +| [![Conda Recipe](https://img.shields.io/badge/recipe-libgdal--arrow--parquet-green.svg)](https://anaconda.org/conda-forge/libgdal-arrow-parquet) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/libgdal-arrow-parquet.svg)](https://anaconda.org/conda-forge/libgdal-arrow-parquet) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/libgdal-arrow-parquet.svg)](https://anaconda.org/conda-forge/libgdal-arrow-parquet) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/libgdal-arrow-parquet.svg)](https://anaconda.org/conda-forge/libgdal-arrow-parquet) | Installing gdal-split ===================== @@ -388,16 +137,16 @@ conda config --add channels conda-forge conda config --set channel_priority strict ``` -Once the `conda-forge` channel has been enabled, `gdal, libgdal` can be installed with `conda`: +Once the `conda-forge` channel has been enabled, `gdal, libgdal, libgdal-arrow-parquet` can be installed with `conda`: ``` -conda install gdal libgdal +conda install gdal libgdal libgdal-arrow-parquet ``` or with `mamba`: ``` -mamba install gdal libgdal +mamba install gdal libgdal libgdal-arrow-parquet ``` It is possible to list all of the versions of `gdal` available on your platform with `conda`: From 5a71951e229fc9a123aee519442ff1d2c65de11d Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Fri, 9 Dec 2022 01:49:09 +0100 Subject: [PATCH 14/22] Update recipe/meta.yaml Co-authored-by: h-vetinari --- recipe/meta.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 1c52d765..cc0866ff 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -156,6 +156,10 @@ outputs: - name: libgdal-arrow-parquet script: build_arrow_parquet.sh # [unix] script: build_arrow_parquet.bat # [win] + build: + # currently, openssl 3 only works for arrow>=10; this may change if certain changes are + # backported; tracked in e.g. https://github.com/conda-forge/arrow-cpp-feedstock/pull/874 + skip: true # [(openssl == "3") and (arrow_cpp != "10.0.1")] requirements: build: - cmake From 9ab0faacc00ad617771cb57a35cff9b34c4cfa83 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Fri, 9 Dec 2022 02:14:32 +0100 Subject: [PATCH 15/22] Update recipe/meta.yaml --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index cc0866ff..6c505f60 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -159,7 +159,7 @@ outputs: build: # currently, openssl 3 only works for arrow>=10; this may change if certain changes are # backported; tracked in e.g. https://github.com/conda-forge/arrow-cpp-feedstock/pull/874 - skip: true # [(openssl == "3") and (arrow_cpp != "10.0.1")] + skip: true # [(openssl == "3") and (arrow-cpp != "10.0.1")] requirements: build: - cmake From 32557d87e057cdbe171712e313e1b47ccfdf00a2 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Fri, 9 Dec 2022 02:28:23 +0100 Subject: [PATCH 16/22] bump build number --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 6c505f60..355da545 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -12,7 +12,7 @@ source: - 0002-Parquet-make-sure-that-ArrowLayer-destructor-is-avai.patch build: - number: 11 + number: 12 skip_compile_pyc: - "share/bash-completion/completions/*.py" From 3a9796b0072c1f6f5d5412de662321ccf64d7636 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Fri, 9 Dec 2022 02:37:46 +0100 Subject: [PATCH 17/22] meta.yaml: arrow-cpp -> arrow_cpp --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 355da545..ffb01123 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -159,7 +159,7 @@ outputs: build: # currently, openssl 3 only works for arrow>=10; this may change if certain changes are # backported; tracked in e.g. https://github.com/conda-forge/arrow-cpp-feedstock/pull/874 - skip: true # [(openssl == "3") and (arrow-cpp != "10.0.1")] + skip: true # [(openssl == "3") and (arrow_cpp != "10.0.1")] requirements: build: - cmake From 65683e10b7d01d8c23f536982a1e7f3fd732eb63 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Fri, 9 Dec 2022 04:32:06 +0100 Subject: [PATCH 18/22] Update recipe/meta.yaml Co-authored-by: h-vetinari --- recipe/meta.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index ffb01123..d948c810 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -157,9 +157,9 @@ outputs: script: build_arrow_parquet.sh # [unix] script: build_arrow_parquet.bat # [win] build: - # currently, openssl 3 only works for arrow>=10; this may change if certain changes are - # backported; tracked in e.g. https://github.com/conda-forge/arrow-cpp-feedstock/pull/874 - skip: true # [(openssl == "3") and (arrow_cpp != "10.0.1")] + # skip openssl 3 pending https://github.com/conda-forge/arrow-cpp-feedstock/issues/918; + # alternatively only dependon arrow > 10 (conda seems to get confused with a combined skip) + skip: true # [openssl == "3"] requirements: build: - cmake From 2458310970a86073f4a847767bdd964ec2899cc9 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Fri, 9 Dec 2022 04:50:14 +0100 Subject: [PATCH 19/22] .ci_support: try to remove curl: 7 --- .ci_support/linux_64_openssl1.1.1.yaml | 2 -- .ci_support/linux_64_openssl3.yaml | 2 -- .ci_support/linux_aarch64_openssl1.1.1.yaml | 2 -- .ci_support/linux_aarch64_openssl3.yaml | 2 -- .ci_support/linux_ppc64le_openssl1.1.1.yaml | 2 -- .ci_support/linux_ppc64le_openssl3.yaml | 2 -- .ci_support/osx_64_openssl1.1.1.yaml | 2 -- .ci_support/osx_64_openssl3.yaml | 2 -- .ci_support/osx_arm64_openssl1.1.1.yaml | 2 -- .ci_support/osx_arm64_openssl3.yaml | 2 -- .ci_support/win_64_openssl1.1.1.yaml | 2 -- .ci_support/win_64_openssl3.yaml | 2 -- 12 files changed, 24 deletions(-) diff --git a/.ci_support/linux_64_openssl1.1.1.yaml b/.ci_support/linux_64_openssl1.1.1.yaml index 50e4b163..0ce42665 100644 --- a/.ci_support/linux_64_openssl1.1.1.yaml +++ b/.ci_support/linux_64_openssl1.1.1.yaml @@ -15,8 +15,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_64_openssl3.yaml b/.ci_support/linux_64_openssl3.yaml index c953e5ba..6984b645 100644 --- a/.ci_support/linux_64_openssl3.yaml +++ b/.ci_support/linux_64_openssl3.yaml @@ -15,8 +15,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_aarch64_openssl1.1.1.yaml b/.ci_support/linux_aarch64_openssl1.1.1.yaml index 30aba17c..10ad8afc 100644 --- a/.ci_support/linux_aarch64_openssl1.1.1.yaml +++ b/.ci_support/linux_aarch64_openssl1.1.1.yaml @@ -19,8 +19,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_aarch64_openssl3.yaml b/.ci_support/linux_aarch64_openssl3.yaml index 17b35fdc..15f82b9b 100644 --- a/.ci_support/linux_aarch64_openssl3.yaml +++ b/.ci_support/linux_aarch64_openssl3.yaml @@ -19,8 +19,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_ppc64le_openssl1.1.1.yaml b/.ci_support/linux_ppc64le_openssl1.1.1.yaml index 0aba81e6..e4a3f97e 100644 --- a/.ci_support/linux_ppc64le_openssl1.1.1.yaml +++ b/.ci_support/linux_ppc64le_openssl1.1.1.yaml @@ -15,8 +15,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_ppc64le_openssl3.yaml b/.ci_support/linux_ppc64le_openssl3.yaml index 49d06440..f9d1b216 100644 --- a/.ci_support/linux_ppc64le_openssl3.yaml +++ b/.ci_support/linux_ppc64le_openssl3.yaml @@ -15,8 +15,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/osx_64_openssl1.1.1.yaml b/.ci_support/osx_64_openssl1.1.1.yaml index f50dfc6e..c591cd5e 100644 --- a/.ci_support/osx_64_openssl1.1.1.yaml +++ b/.ci_support/osx_64_openssl1.1.1.yaml @@ -15,8 +15,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_64_openssl3.yaml b/.ci_support/osx_64_openssl3.yaml index c950ccd4..893b4f30 100644 --- a/.ci_support/osx_64_openssl3.yaml +++ b/.ci_support/osx_64_openssl3.yaml @@ -15,8 +15,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_arm64_openssl1.1.1.yaml b/.ci_support/osx_arm64_openssl1.1.1.yaml index 5fd96575..8612ec91 100644 --- a/.ci_support/osx_arm64_openssl1.1.1.yaml +++ b/.ci_support/osx_arm64_openssl1.1.1.yaml @@ -15,8 +15,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_arm64_openssl3.yaml b/.ci_support/osx_arm64_openssl3.yaml index 875da335..373cee38 100644 --- a/.ci_support/osx_arm64_openssl3.yaml +++ b/.ci_support/osx_arm64_openssl3.yaml @@ -15,8 +15,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/win_64_openssl1.1.1.yaml b/.ci_support/win_64_openssl1.1.1.yaml index b1be2630..b2cf8bdf 100644 --- a/.ci_support/win_64_openssl1.1.1.yaml +++ b/.ci_support/win_64_openssl1.1.1.yaml @@ -11,8 +11,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - vs2019 expat: diff --git a/.ci_support/win_64_openssl3.yaml b/.ci_support/win_64_openssl3.yaml index c8b641c3..bba8f3da 100644 --- a/.ci_support/win_64_openssl3.yaml +++ b/.ci_support/win_64_openssl3.yaml @@ -11,8 +11,6 @@ channel_sources: - conda-forge channel_targets: - conda-forge main -curl: -- '7' cxx_compiler: - vs2019 expat: From 0d56330d24b5268cac6eed51a196183f3fa477d8 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Fri, 9 Dec 2022 04:59:17 +0100 Subject: [PATCH 20/22] .ci_support: try to remove mentions to arrow-cpp in openssl3 files --- .ci_support/linux_64_openssl3.yaml | 5 ----- .ci_support/linux_aarch64_openssl3.yaml | 5 ----- .ci_support/linux_ppc64le_openssl3.yaml | 5 ----- .ci_support/osx_64_openssl3.yaml | 5 ----- .ci_support/osx_arm64_openssl3.yaml | 5 ----- .ci_support/win_64_openssl3.yaml | 5 ----- 6 files changed, 30 deletions(-) diff --git a/.ci_support/linux_64_openssl3.yaml b/.ci_support/linux_64_openssl3.yaml index 6984b645..794114a2 100644 --- a/.ci_support/linux_64_openssl3.yaml +++ b/.ci_support/linux_64_openssl3.yaml @@ -1,8 +1,3 @@ -arrow_cpp: -- 10.0.1 -- 7.0.1 -- 8.0.1 -- 9.0.0 c_compiler: - gcc c_compiler_version: diff --git a/.ci_support/linux_aarch64_openssl3.yaml b/.ci_support/linux_aarch64_openssl3.yaml index 15f82b9b..4bdebf6f 100644 --- a/.ci_support/linux_aarch64_openssl3.yaml +++ b/.ci_support/linux_aarch64_openssl3.yaml @@ -1,10 +1,5 @@ BUILD: - aarch64-conda_cos7-linux-gnu -arrow_cpp: -- 10.0.1 -- 7.0.1 -- 8.0.1 -- 9.0.0 c_compiler: - gcc c_compiler_version: diff --git a/.ci_support/linux_ppc64le_openssl3.yaml b/.ci_support/linux_ppc64le_openssl3.yaml index f9d1b216..b4567947 100644 --- a/.ci_support/linux_ppc64le_openssl3.yaml +++ b/.ci_support/linux_ppc64le_openssl3.yaml @@ -1,8 +1,3 @@ -arrow_cpp: -- 10.0.1 -- 7.0.1 -- 8.0.1 -- 9.0.0 c_compiler: - gcc c_compiler_version: diff --git a/.ci_support/osx_64_openssl3.yaml b/.ci_support/osx_64_openssl3.yaml index 893b4f30..269f0943 100644 --- a/.ci_support/osx_64_openssl3.yaml +++ b/.ci_support/osx_64_openssl3.yaml @@ -1,10 +1,5 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' -arrow_cpp: -- 10.0.1 -- 7.0.1 -- 8.0.1 -- 9.0.0 c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_arm64_openssl3.yaml b/.ci_support/osx_arm64_openssl3.yaml index 373cee38..35684625 100644 --- a/.ci_support/osx_arm64_openssl3.yaml +++ b/.ci_support/osx_arm64_openssl3.yaml @@ -1,10 +1,5 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' -arrow_cpp: -- 10.0.1 -- 7.0.1 -- 8.0.1 -- 9.0.0 c_compiler: - clang c_compiler_version: diff --git a/.ci_support/win_64_openssl3.yaml b/.ci_support/win_64_openssl3.yaml index bba8f3da..39566702 100644 --- a/.ci_support/win_64_openssl3.yaml +++ b/.ci_support/win_64_openssl3.yaml @@ -1,8 +1,3 @@ -arrow_cpp: -- 10.0.1 -- 7.0.1 -- 8.0.1 -- 9.0.0 c_compiler: - vs2019 cfitsio: From e2ec50ce6fe6f6152d05e73eb970769030cadef6 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Fri, 9 Dec 2022 13:48:51 +0100 Subject: [PATCH 21/22] Update recipe/meta.yaml Co-authored-by: h-vetinari --- recipe/meta.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index d948c810..27cccf4a 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -157,9 +157,8 @@ outputs: script: build_arrow_parquet.sh # [unix] script: build_arrow_parquet.bat # [win] build: - # skip openssl 3 pending https://github.com/conda-forge/arrow-cpp-feedstock/issues/918; - # alternatively only dependon arrow > 10 (conda seems to get confused with a combined skip) - skip: true # [openssl == "3"] + # only for libarrow > 10 + skip: true # [arrow_cpp != "10.0.1"] requirements: build: - cmake From cd13343b074c8375589f994f7689b9287e1f4cba Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Fri, 9 Dec 2022 12:54:22 +0000 Subject: [PATCH 22/22] MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2022.12.09.08.14.11 --- .ci_support/linux_64_openssl1.1.1.yaml | 2 ++ .ci_support/linux_64_openssl3.yaml | 7 +++++++ .ci_support/linux_aarch64_openssl1.1.1.yaml | 2 ++ .ci_support/linux_aarch64_openssl3.yaml | 7 +++++++ .ci_support/linux_ppc64le_openssl1.1.1.yaml | 2 ++ .ci_support/linux_ppc64le_openssl3.yaml | 7 +++++++ .ci_support/osx_64_openssl1.1.1.yaml | 2 ++ .ci_support/osx_64_openssl3.yaml | 7 +++++++ .ci_support/osx_arm64_openssl1.1.1.yaml | 2 ++ .ci_support/osx_arm64_openssl3.yaml | 7 +++++++ .ci_support/win_64_openssl1.1.1.yaml | 2 ++ .ci_support/win_64_openssl3.yaml | 7 +++++++ 12 files changed, 54 insertions(+) diff --git a/.ci_support/linux_64_openssl1.1.1.yaml b/.ci_support/linux_64_openssl1.1.1.yaml index 0ce42665..50e4b163 100644 --- a/.ci_support/linux_64_openssl1.1.1.yaml +++ b/.ci_support/linux_64_openssl1.1.1.yaml @@ -15,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_64_openssl3.yaml b/.ci_support/linux_64_openssl3.yaml index 794114a2..c953e5ba 100644 --- a/.ci_support/linux_64_openssl3.yaml +++ b/.ci_support/linux_64_openssl3.yaml @@ -1,3 +1,8 @@ +arrow_cpp: +- 10.0.1 +- 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: @@ -10,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_aarch64_openssl1.1.1.yaml b/.ci_support/linux_aarch64_openssl1.1.1.yaml index 10ad8afc..30aba17c 100644 --- a/.ci_support/linux_aarch64_openssl1.1.1.yaml +++ b/.ci_support/linux_aarch64_openssl1.1.1.yaml @@ -19,6 +19,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_aarch64_openssl3.yaml b/.ci_support/linux_aarch64_openssl3.yaml index 4bdebf6f..17b35fdc 100644 --- a/.ci_support/linux_aarch64_openssl3.yaml +++ b/.ci_support/linux_aarch64_openssl3.yaml @@ -1,5 +1,10 @@ BUILD: - aarch64-conda_cos7-linux-gnu +arrow_cpp: +- 10.0.1 +- 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: @@ -14,6 +19,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_ppc64le_openssl1.1.1.yaml b/.ci_support/linux_ppc64le_openssl1.1.1.yaml index e4a3f97e..0aba81e6 100644 --- a/.ci_support/linux_ppc64le_openssl1.1.1.yaml +++ b/.ci_support/linux_ppc64le_openssl1.1.1.yaml @@ -15,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_ppc64le_openssl3.yaml b/.ci_support/linux_ppc64le_openssl3.yaml index b4567947..49d06440 100644 --- a/.ci_support/linux_ppc64le_openssl3.yaml +++ b/.ci_support/linux_ppc64le_openssl3.yaml @@ -1,3 +1,8 @@ +arrow_cpp: +- 10.0.1 +- 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - gcc c_compiler_version: @@ -10,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/osx_64_openssl1.1.1.yaml b/.ci_support/osx_64_openssl1.1.1.yaml index c591cd5e..f50dfc6e 100644 --- a/.ci_support/osx_64_openssl1.1.1.yaml +++ b/.ci_support/osx_64_openssl1.1.1.yaml @@ -15,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_64_openssl3.yaml b/.ci_support/osx_64_openssl3.yaml index 269f0943..c950ccd4 100644 --- a/.ci_support/osx_64_openssl3.yaml +++ b/.ci_support/osx_64_openssl3.yaml @@ -1,5 +1,10 @@ MACOSX_DEPLOYMENT_TARGET: - '10.9' +arrow_cpp: +- 10.0.1 +- 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - clang c_compiler_version: @@ -10,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_arm64_openssl1.1.1.yaml b/.ci_support/osx_arm64_openssl1.1.1.yaml index 8612ec91..5fd96575 100644 --- a/.ci_support/osx_arm64_openssl1.1.1.yaml +++ b/.ci_support/osx_arm64_openssl1.1.1.yaml @@ -15,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_arm64_openssl3.yaml b/.ci_support/osx_arm64_openssl3.yaml index 35684625..875da335 100644 --- a/.ci_support/osx_arm64_openssl3.yaml +++ b/.ci_support/osx_arm64_openssl3.yaml @@ -1,5 +1,10 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +arrow_cpp: +- 10.0.1 +- 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - clang c_compiler_version: @@ -10,6 +15,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/win_64_openssl1.1.1.yaml b/.ci_support/win_64_openssl1.1.1.yaml index b2cf8bdf..b1be2630 100644 --- a/.ci_support/win_64_openssl1.1.1.yaml +++ b/.ci_support/win_64_openssl1.1.1.yaml @@ -11,6 +11,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - vs2019 expat: diff --git a/.ci_support/win_64_openssl3.yaml b/.ci_support/win_64_openssl3.yaml index 39566702..c8b641c3 100644 --- a/.ci_support/win_64_openssl3.yaml +++ b/.ci_support/win_64_openssl3.yaml @@ -1,3 +1,8 @@ +arrow_cpp: +- 10.0.1 +- 7.0.1 +- 8.0.1 +- 9.0.0 c_compiler: - vs2019 cfitsio: @@ -6,6 +11,8 @@ channel_sources: - conda-forge channel_targets: - conda-forge main +curl: +- '7' cxx_compiler: - vs2019 expat:
VariantStatus
linux_64_arrow_cpp6.0.2openssl1.1.1linux_64_openssl1.1.1 - variant + variant
linux_64_arrow_cpp6.0.2openssl3linux_64_openssl3 - variant + variant
linux_64_arrow_cpp7.0.1openssl1.1.1linux_aarch64_openssl1.1.1 - variant + variant
linux_64_arrow_cpp7.0.1openssl3linux_aarch64_openssl3 - variant + variant
linux_64_arrow_cpp8.0.1openssl1.1.1linux_ppc64le_openssl1.1.1 - variant + variant
linux_64_arrow_cpp8.0.1openssl3linux_ppc64le_openssl3 - variant + variant
linux_64_arrow_cpp9.0.0openssl1.1.1osx_64_openssl1.1.1 - variant + variant
linux_64_arrow_cpp9.0.0openssl3osx_64_openssl3 - variant + variant
linux_aarch64_arrow_cpp6.0.2openssl1.1.1osx_arm64_openssl1.1.1 - variant + variant
linux_aarch64_arrow_cpp6.0.2openssl3osx_arm64_openssl3 - variant + variant
linux_aarch64_arrow_cpp7.0.1openssl1.1.1win_64_openssl1.1.1 - variant + variant
linux_aarch64_arrow_cpp7.0.1openssl3win_64_openssl3 - variant - -
linux_aarch64_arrow_cpp8.0.1openssl1.1.1 - - variant - -
linux_aarch64_arrow_cpp8.0.1openssl3 - - variant - -
linux_aarch64_arrow_cpp9.0.0openssl1.1.1 - - variant - -
linux_aarch64_arrow_cpp9.0.0openssl3 - - variant - -
linux_ppc64le_arrow_cpp6.0.2openssl1.1.1 - - variant - -
linux_ppc64le_arrow_cpp6.0.2openssl3 - - variant - -
linux_ppc64le_arrow_cpp7.0.1openssl1.1.1 - - variant - -
linux_ppc64le_arrow_cpp7.0.1openssl3 - - variant - -
linux_ppc64le_arrow_cpp8.0.1openssl1.1.1 - - variant - -
linux_ppc64le_arrow_cpp8.0.1openssl3 - - variant - -
linux_ppc64le_arrow_cpp9.0.0openssl1.1.1 - - variant - -
linux_ppc64le_arrow_cpp9.0.0openssl3 - - variant - -
osx_64_arrow_cpp6.0.2openssl1.1.1 - - variant - -
osx_64_arrow_cpp6.0.2openssl3 - - variant - -
osx_64_arrow_cpp7.0.1openssl1.1.1 - - variant - -
osx_64_arrow_cpp7.0.1openssl3 - - variant - -
osx_64_arrow_cpp8.0.1openssl1.1.1 - - variant - -
osx_64_arrow_cpp8.0.1openssl3 - - variant - -
osx_64_arrow_cpp9.0.0openssl1.1.1 - - variant - -
osx_64_arrow_cpp9.0.0openssl3 - - variant - -
osx_arm64_arrow_cpp6.0.2openssl1.1.1 - - variant - -
osx_arm64_arrow_cpp6.0.2openssl3 - - variant - -
osx_arm64_arrow_cpp7.0.1openssl1.1.1 - - variant - -
osx_arm64_arrow_cpp7.0.1openssl3 - - variant - -
osx_arm64_arrow_cpp8.0.1openssl1.1.1 - - variant - -
osx_arm64_arrow_cpp8.0.1openssl3 - - variant - -
osx_arm64_arrow_cpp9.0.0openssl1.1.1 - - variant - -
osx_arm64_arrow_cpp9.0.0openssl3 - - variant - -
win_64_arrow_cpp6.0.2openssl1.1.1 - - variant - -
win_64_arrow_cpp6.0.2openssl3 - - variant - -
win_64_arrow_cpp7.0.1openssl1.1.1 - - variant - -
win_64_arrow_cpp7.0.1openssl3 - - variant - -
win_64_arrow_cpp8.0.1openssl1.1.1 - - variant - -
win_64_arrow_cpp8.0.1openssl3 - - variant - -
win_64_arrow_cpp9.0.0openssl1.1.1 - - variant - -
win_64_arrow_cpp9.0.0openssl3 - - variant + variant