From 3283582bb960613ef76c01a80d4abfb36c5619a4 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Mon, 24 Jul 2023 23:45:38 +0200 Subject: [PATCH 01/14] remove compat outputs --- recipe/meta.yaml | 39 +++++++-------------------------------- 1 file changed, 7 insertions(+), 32 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index bbc29fe41..b527000a7 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,6 +1,6 @@ {% set version = "13.0.0" %} {% set cuda_enabled = cuda_compiler_version != "None" %} -{% set build_ext_version = "4.0.0" %} +{% set build_ext_version = "5.0.0" %} {% set build_ext = "cuda" if cuda_enabled else "cpu" %} {% set proc_build_number = "0" %} {% set llvm_version = "15" %} @@ -41,6 +41,10 @@ outputs: build: number: {{ proc_build_number }} string: {{ build_ext }} + requirements: + run_constrained: + # avoid installation with old naming of proc package + - arrow-cpp-proc <0.0a0 test: commands: - exit 0 @@ -51,19 +55,6 @@ outputs: - LICENSE.txt summary: A meta-package to select Arrow build variant - # compat output for old mutex-package naming - - name: arrow-cpp-proc - version: {{ build_ext_version }} - build: - number: {{ proc_build_number }} - string: {{ build_ext }} - requirements: - run: - - apache-arrow-proc ={{ build_ext_version }}={{ build_ext }} - test: - commands: - - exit 0 - - name: libarrow script: build-arrow.sh # [unix] script: build-arrow.bat # [win] @@ -145,8 +136,8 @@ outputs: - libcurl # [win] run_constrained: - apache-arrow-proc =*={{ build_ext }} - # make sure we don't co-install with old version of old package name - - arrow-cpp ={{ version }} + # avoid installation with old naming of lib package + - arrow-cpp <0.0a0 # old parquet lib output, now part of this feedstock - parquet-cpp <0.0a0 @@ -196,22 +187,6 @@ outputs: - LICENSE.txt summary: C++ libraries for Apache Arrow - # compat output for old naming scheme; switched for 10.0.0; keep for a few versions - - name: arrow-cpp - version: {{ version }} - build: - string: h{{ PKG_HASH }}_{{ PKG_BUILDNUM }}_{{ build_ext }} - run_exports: - - {{ pin_subpackage("libarrow", max_pin="x.x.x") }} - requirements: - host: - - {{ pin_subpackage('libarrow', exact=True) }} - run: - - {{ pin_subpackage('libarrow', exact=True) }} - test: - commands: - - exit 0 - - name: pyarrow script: build-pyarrow.sh # [unix] script: build-pyarrow.bat # [win] From 85605fa4f9feda64f69625e09b1ad5fac8496ba5 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Sat, 9 Sep 2023 10:17:09 +1100 Subject: [PATCH 02/14] add llvm host-dep for libarrow --- recipe/meta.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index b527000a7..275ea5199 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -115,6 +115,8 @@ outputs: - libgrpc - libprotobuf - libutf8proc + # gandiva requires shared libllvm + - llvm # [unix] - lz4-c - nlohmann_json # gandiva depends on openssl From d43adc6634fb3176223b4ae187ede82547f0ece8 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Sat, 9 Sep 2023 10:38:23 +1100 Subject: [PATCH 03/14] add git-lfs as a build dep to clone arrow-testing --- recipe/meta.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 275ea5199..ff05cadf0 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -35,6 +35,11 @@ build: run_exports: - {{ pin_subpackage("libarrow", max_pin="x") }} +requirements: + build: + # needed to clone arrow-testing + - git-lfs + outputs: - name: apache-arrow-proc version: {{ build_ext_version }} From 1273a619da3f6fc81053ef57e32923dcfe1fa92f Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Wed, 13 Sep 2023 11:39:59 +1100 Subject: [PATCH 04/14] build from upstream HEAD --- recipe/meta.yaml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index ff05cadf0..f3d4efec9 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "13.0.0" %} +{% set version = "14.0.0" %} {% set cuda_enabled = cuda_compiler_version != "None" %} {% set build_ext_version = "5.0.0" %} {% set build_ext = "cuda" if cuda_enabled else "cpu" %} @@ -16,15 +16,14 @@ source: # arrow has the unfortunate habit of changing tags of X.0.0 in the # lead-up until release -> don't use github sources on main # - url: https://github.com/apache/arrow/archive/refs/tags/apache-arrow-{{ version }}.tar.gz - - url: https://dist.apache.org/repos/dist/release/arrow/arrow-{{ version }}/apache-arrow-{{ version }}.tar.gz - sha256: 35dfda191262a756be934eef8afee8d09762cad25021daa626eb249e251ac9e6 - patches: - - patches/0001-GH-15017-Python-Harden-test_memory.py-for-use-with-A.patch - - patches/0002-GH-37480-Python-Bump-pandas-version-that-contains-re.patch + # - url: https://dist.apache.org/repos/dist/release/arrow/arrow-{{ version }}/apache-arrow-{{ version }}.tar.gz + # sha256: 35dfda191262a756be934eef8afee8d09762cad25021daa626eb249e251ac9e6 + - git_url: https://github.com/apache/arrow.git + git_rev: 1940cbbb3a5224243e429f9577604bb7b276cf4f # testing-submodule not part of release tarball - - git_url: https://github.com/apache/arrow-testing.git - git_rev: 47f7b56b25683202c1fd957668e13f2abafc0f12 - folder: testing + # - git_url: https://github.com/apache/arrow-testing.git + # git_rev: 47f7b56b25683202c1fd957668e13f2abafc0f12 + # folder: testing build: number: 4 From e4588f56a84fe1c56b1ac51c50d76c06fc0deccf Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Wed, 13 Sep 2023 11:42:38 +1100 Subject: [PATCH 05/14] use newer CUDAToolkit_ROOT variable for CMake --- recipe/build-arrow.sh | 2 +- recipe/build-pyarrow.sh | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/recipe/build-arrow.sh b/recipe/build-arrow.sh index 629a93094..ef0b03881 100644 --- a/recipe/build-arrow.sh +++ b/recipe/build-arrow.sh @@ -30,7 +30,7 @@ fi # Enable CUDA support if [[ ! -z "${cuda_compiler_version+x}" && "${cuda_compiler_version}" != "None" ]] then - EXTRA_CMAKE_ARGS=" ${EXTRA_CMAKE_ARGS} -DARROW_CUDA=ON -DCUDA_TOOLKIT_ROOT_DIR=${CUDA_HOME} -DCMAKE_LIBRARY_PATH=${CONDA_BUILD_SYSROOT}/lib" + EXTRA_CMAKE_ARGS=" ${EXTRA_CMAKE_ARGS} -DARROW_CUDA=ON -DCUDAToolkit_ROOT=${CUDA_HOME} -DCMAKE_LIBRARY_PATH=${CONDA_BUILD_SYSROOT}/lib" else EXTRA_CMAKE_ARGS=" ${EXTRA_CMAKE_ARGS} -DARROW_CUDA=OFF" fi diff --git a/recipe/build-pyarrow.sh b/recipe/build-pyarrow.sh index 9c12321a1..f39e06874 100644 --- a/recipe/build-pyarrow.sh +++ b/recipe/build-pyarrow.sh @@ -24,6 +24,10 @@ BUILD_EXT_FLAGS="" # Enable CUDA support if [[ ! -z "${cuda_compiler_version+x}" && "${cuda_compiler_version}" != "None" ]]; then export PYARROW_WITH_CUDA=1 + if [[ "${build_platform}" != "${target_platform}" ]]; then + export CUDAToolkit_ROOT=${CUDA_HOME} + export CMAKE_LIBRARY_PATH=${CONDA_BUILD_SYSROOT}/lib + fi else export PYARROW_WITH_CUDA=0 fi From 857123f215519df9742b1e993860e8804a3e1c71 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Wed, 13 Sep 2023 13:05:29 +1100 Subject: [PATCH 06/14] re-enable sparse tests --- recipe/meta.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index f3d4efec9..2a0cbc5de 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -340,6 +340,7 @@ outputs: - pandas - s3fs - scipy + - sparse >=0.14 # these are generally (far) behind on migrating abseil/grpc/protobuf, # and using them as test dependencies blocks the migrator unnecessarily # - pytorch @@ -348,8 +349,6 @@ outputs: # - jpype1 # doesn't get picked up correctly # - libhdfs3 - # causes segfaults - # - sparse source_files: - testing/data commands: From d77056eaeb988356499cdd528fd2b703a6088c80 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Wed, 13 Sep 2023 21:17:49 +1100 Subject: [PATCH 07/14] add skip for failing test --- recipe/meta.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 2a0cbc5de..1b30871b3 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -372,6 +372,8 @@ outputs: # XMinioInvalidObjectName on win: "Object name contains unsupported characters" {% set tests_to_skip = tests_to_skip + " or test_write_to_dataset_with_partitions_s3fs" %} # [win] # vvvvvvv TESTS THAT SHOULDN'T HAVE TO BE SKIPPED vvvvvvv + # currently broken + {% set tests_to_skip = tests_to_skip + " or test_fastparquet_cross_compatibility" %} # new fsspec changed behaviour, see https://github.com/apache/arrow/issues/37555 {% set tests_to_skip = tests_to_skip + " or test_get_file_info_with_selector" %} # gandiva tests are segfaulting on ppc From 3d200c08128cc11ec6f9ff53aad2f4fad25f1140 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Wed, 13 Sep 2023 21:35:41 +1100 Subject: [PATCH 08/14] avoid failure in fixture teardown --- recipe/meta.yaml | 2 + ...Harden-test_memory.py-for-use-with-A.patch | 2 +- ...Bump-pandas-version-that-contains-re.patch | 2 +- ...ixture-teardown-should-not-fail-test.patch | 37 +++++++++++++++++++ 4 files changed, 41 insertions(+), 2 deletions(-) create mode 100644 recipe/patches/0003-fixture-teardown-should-not-fail-test.patch diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 1b30871b3..f3ad17cf4 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -20,6 +20,8 @@ source: # sha256: 35dfda191262a756be934eef8afee8d09762cad25021daa626eb249e251ac9e6 - git_url: https://github.com/apache/arrow.git git_rev: 1940cbbb3a5224243e429f9577604bb7b276cf4f + patches: + - patches/0003-fixture-teardown-should-not-fail-test.patch # testing-submodule not part of release tarball # - git_url: https://github.com/apache/arrow-testing.git # git_rev: 47f7b56b25683202c1fd957668e13f2abafc0f12 diff --git a/recipe/patches/0001-GH-15017-Python-Harden-test_memory.py-for-use-with-A.patch b/recipe/patches/0001-GH-15017-Python-Harden-test_memory.py-for-use-with-A.patch index db9b9ec3d..8926abf52 100644 --- a/recipe/patches/0001-GH-15017-Python-Harden-test_memory.py-for-use-with-A.patch +++ b/recipe/patches/0001-GH-15017-Python-Harden-test_memory.py-for-use-with-A.patch @@ -1,7 +1,7 @@ From 0ff739a0d3c8c4df4b46625f0bb0bc87c6b0d29d Mon Sep 17 00:00:00 2001 From: h-vetinari Date: Fri, 28 Jul 2023 13:31:01 +1100 -Subject: [PATCH 1/2] GH-15017: [Python] Harden test_memory.py for use with +Subject: [PATCH 1/3] GH-15017: [Python] Harden test_memory.py for use with ARROW_USE_GLOG=ON (#36901) Accept output pattern for ARROW_USE_GLOG=ON too. diff --git a/recipe/patches/0002-GH-37480-Python-Bump-pandas-version-that-contains-re.patch b/recipe/patches/0002-GH-37480-Python-Bump-pandas-version-that-contains-re.patch index 8a6006a11..1a1578e78 100644 --- a/recipe/patches/0002-GH-37480-Python-Bump-pandas-version-that-contains-re.patch +++ b/recipe/patches/0002-GH-37480-Python-Bump-pandas-version-that-contains-re.patch @@ -1,7 +1,7 @@ From 2caeef5e4ad232013e769e36fb957cf4f0c5992f Mon Sep 17 00:00:00 2001 From: Dane Pitkin <48041712+danepitkin@users.noreply.github.com> Date: Thu, 31 Aug 2023 00:32:26 -0400 -Subject: [PATCH 2/2] GH-37480: [Python] Bump pandas version that contains +Subject: [PATCH 2/3] GH-37480: [Python] Bump pandas version that contains regression for pandas issue 50127 (#37481) ### Rationale for this change diff --git a/recipe/patches/0003-fixture-teardown-should-not-fail-test.patch b/recipe/patches/0003-fixture-teardown-should-not-fail-test.patch new file mode 100644 index 000000000..8fb06d45c --- /dev/null +++ b/recipe/patches/0003-fixture-teardown-should-not-fail-test.patch @@ -0,0 +1,37 @@ +From 93389575d6e06cd561357a46d6eb5c888f3e18bb Mon Sep 17 00:00:00 2001 +From: "H. Vetinari" +Date: Wed, 13 Sep 2023 21:34:29 +1100 +Subject: [PATCH 3/3] fixture teardown should not fail test + +--- + python/pyarrow/tests/test_fs.py | 10 ++++++++-- + 1 file changed, 8 insertions(+), 2 deletions(-) + +diff --git a/python/pyarrow/tests/test_fs.py b/python/pyarrow/tests/test_fs.py +index b64680c87..d81213b64 100644 +--- a/python/pyarrow/tests/test_fs.py ++++ b/python/pyarrow/tests/test_fs.py +@@ -256,7 +256,10 @@ def s3fs(request, s3_server): + allow_move_dir=False, + allow_append_to_file=False, + ) +- fs.delete_dir(bucket) ++ try: ++ fs.delete_dir(bucket) ++ except OSError: ++ pass + + + @pytest.fixture +@@ -358,7 +361,10 @@ def py_fsspec_s3fs(request, s3_server): + allow_move_dir=False, + allow_append_to_file=True, + ) +- fs.delete_dir(bucket) ++ try: ++ fs.delete_dir(bucket) ++ except OSError: ++ pass + + + @pytest.fixture(params=[ From c7791068a5a358111ef3df7f7991108012e917b1 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Thu, 14 Sep 2023 07:45:08 +1100 Subject: [PATCH 09/14] extend test skip for unsupported characters to osx --- recipe/meta.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index f3ad17cf4..cbbd554db 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -371,15 +371,15 @@ outputs: # skip tests that cannot succeed in emulation {% set tests_to_skip = tests_to_skip + " or test_debug_memory_pool_disabled" %} # [aarch64 or ppc64le] {% set tests_to_skip = tests_to_skip + " or test_env_var_io_thread_count" %} # [aarch64 or ppc64le] - # XMinioInvalidObjectName on win: "Object name contains unsupported characters" - {% set tests_to_skip = tests_to_skip + " or test_write_to_dataset_with_partitions_s3fs" %} # [win] + # XMinioInvalidObjectName on osx/win: "Object name contains unsupported characters" + {% set tests_to_skip = tests_to_skip + " or test_write_to_dataset_with_partitions_s3fs" %} # [osx or win] # vvvvvvv TESTS THAT SHOULDN'T HAVE TO BE SKIPPED vvvvvvv # currently broken {% set tests_to_skip = tests_to_skip + " or test_fastparquet_cross_compatibility" %} # new fsspec changed behaviour, see https://github.com/apache/arrow/issues/37555 {% set tests_to_skip = tests_to_skip + " or test_get_file_info_with_selector" %} # gandiva tests are segfaulting on ppc - {% set tests_to_skip = tests_to_skip + " or test_gandiva" %} # [ppc64le] + {% set tests_to_skip = tests_to_skip + " or test_gandiva" %} # [ppc64le] # test failures on ppc (both failing with: Float value was truncated converting to int32) {% set tests_to_skip = tests_to_skip + " or test_safe_cast_from_float_with_nans_to_int" %} # [ppc64le] {% set tests_to_skip = tests_to_skip + " or test_float_with_null_as_integer" %} # [ppc64le] From 330cd302d3c5f756de2271ba56bd6b18baeccc3b Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Thu, 14 Sep 2023 07:45:16 +1100 Subject: [PATCH 10/14] add remaining test skips --- recipe/meta.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index cbbd554db..4d507cb0e 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -378,6 +378,11 @@ outputs: {% set tests_to_skip = tests_to_skip + " or test_fastparquet_cross_compatibility" %} # new fsspec changed behaviour, see https://github.com/apache/arrow/issues/37555 {% set tests_to_skip = tests_to_skip + " or test_get_file_info_with_selector" %} + # problems with minio + {% set tests_to_skip = tests_to_skip + " or (test_delete_dir and S3FileSystem)" %} + {% set tests_to_skip = tests_to_skip + " or (test_delete_dir_contents and S3FileSystem)" %} + {% set tests_to_skip = tests_to_skip + " or (test_get_file_info and S3FileSystem)" %} + {% set tests_to_skip = tests_to_skip + " or (test_move_directory and S3FileSystem)" %} # gandiva tests are segfaulting on ppc {% set tests_to_skip = tests_to_skip + " or test_gandiva" %} # [ppc64le] # test failures on ppc (both failing with: Float value was truncated converting to int32) From efeefae223edd99fd4801c6b45b65462aec82400 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Thu, 14 Sep 2023 12:47:45 +1100 Subject: [PATCH 11/14] use LLVM version that's compatible with sparse/numba --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 4d507cb0e..90dd28f21 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -3,7 +3,7 @@ {% set build_ext_version = "5.0.0" %} {% set build_ext = "cuda" if cuda_enabled else "cpu" %} {% set proc_build_number = "0" %} -{% set llvm_version = "15" %} +{% set llvm_version = "14" %} # see https://github.com/apache/arrow/blob/apache-arrow-10.0.1/cpp/CMakeLists.txt#L88-L90 {% set so_version = (version.split(".")[0] | int * 100 + version.split(".")[1] | int) ~ "." ~ version.split(".")[2] ~ ".0" %} From a67a550e3f829774c9ccae8e1ea1946bb6b88317 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Thu, 14 Sep 2023 15:41:13 +1100 Subject: [PATCH 12/14] also downgrade compilers on osx to match other llvm components --- recipe/conda_build_config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index a75f452af..a1f24e45b 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -1,6 +1,6 @@ # keep this in sync with llvm_version in meta.yaml; # don't rely on global pinning even if it matches c_compiler_version: # [osx] - - 15 # [osx] + - 14 # [osx] cxx_compiler_version: # [osx] - - 15 # [osx] + - 14 # [osx] From 3d00da3623900ab3fb3a9ec64a16cb5060d6687f Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Thu, 14 Sep 2023 15:44:27 +1100 Subject: [PATCH 13/14] MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.14.01.10.25 --- .ci_support/osx_64_.yaml | 4 ++-- .ci_support/osx_arm64_.yaml | 4 ++-- README.md | 8 +++----- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/.ci_support/osx_64_.yaml b/.ci_support/osx_64_.yaml index 2a5f8c5b3..15852baa3 100644 --- a/.ci_support/osx_64_.yaml +++ b/.ci_support/osx_64_.yaml @@ -9,7 +9,7 @@ bzip2: c_compiler: - clang c_compiler_version: -- '15' +- '14' channel_sources: - conda-forge channel_targets: @@ -19,7 +19,7 @@ cuda_compiler_version: cxx_compiler: - clangxx cxx_compiler_version: -- '15' +- '14' gflags: - '2.2' glog: diff --git a/.ci_support/osx_arm64_.yaml b/.ci_support/osx_arm64_.yaml index 211b71226..f464742f9 100644 --- a/.ci_support/osx_arm64_.yaml +++ b/.ci_support/osx_arm64_.yaml @@ -9,7 +9,7 @@ bzip2: c_compiler: - clang c_compiler_version: -- '15' +- '14' channel_sources: - conda-forge channel_targets: @@ -19,7 +19,7 @@ cuda_compiler_version: cxx_compiler: - clangxx cxx_compiler_version: -- '15' +- '14' gflags: - '2.2' glog: diff --git a/README.md b/README.md index a006dd7c0..b4d4afa92 100644 --- a/README.md +++ b/README.md @@ -150,8 +150,6 @@ Current release info | Name | Downloads | Version | Platforms | | --- | --- | --- | --- | | [![Conda Recipe](https://img.shields.io/badge/recipe-apache--arrow--proc-green.svg)](https://anaconda.org/conda-forge/apache-arrow-proc) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/apache-arrow-proc.svg)](https://anaconda.org/conda-forge/apache-arrow-proc) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/apache-arrow-proc.svg)](https://anaconda.org/conda-forge/apache-arrow-proc) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/apache-arrow-proc.svg)](https://anaconda.org/conda-forge/apache-arrow-proc) | -| [![Conda Recipe](https://img.shields.io/badge/recipe-arrow--cpp-green.svg)](https://anaconda.org/conda-forge/arrow-cpp) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/arrow-cpp.svg)](https://anaconda.org/conda-forge/arrow-cpp) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/arrow-cpp.svg)](https://anaconda.org/conda-forge/arrow-cpp) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/arrow-cpp.svg)](https://anaconda.org/conda-forge/arrow-cpp) | -| [![Conda Recipe](https://img.shields.io/badge/recipe-arrow--cpp--proc-green.svg)](https://anaconda.org/conda-forge/arrow-cpp-proc) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/arrow-cpp-proc.svg)](https://anaconda.org/conda-forge/arrow-cpp-proc) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/arrow-cpp-proc.svg)](https://anaconda.org/conda-forge/arrow-cpp-proc) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/arrow-cpp-proc.svg)](https://anaconda.org/conda-forge/arrow-cpp-proc) | | [![Conda Recipe](https://img.shields.io/badge/recipe-libarrow-green.svg)](https://anaconda.org/conda-forge/libarrow) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/libarrow.svg)](https://anaconda.org/conda-forge/libarrow) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/libarrow.svg)](https://anaconda.org/conda-forge/libarrow) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/libarrow.svg)](https://anaconda.org/conda-forge/libarrow) | | [![Conda Recipe](https://img.shields.io/badge/recipe-pyarrow-green.svg)](https://anaconda.org/conda-forge/pyarrow) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/pyarrow.svg)](https://anaconda.org/conda-forge/pyarrow) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/pyarrow.svg)](https://anaconda.org/conda-forge/pyarrow) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/pyarrow.svg)](https://anaconda.org/conda-forge/pyarrow) | | [![Conda Recipe](https://img.shields.io/badge/recipe-pyarrow--tests-green.svg)](https://anaconda.org/conda-forge/pyarrow-tests) | [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/pyarrow-tests.svg)](https://anaconda.org/conda-forge/pyarrow-tests) | [![Conda Version](https://img.shields.io/conda/vn/conda-forge/pyarrow-tests.svg)](https://anaconda.org/conda-forge/pyarrow-tests) | [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/pyarrow-tests.svg)](https://anaconda.org/conda-forge/pyarrow-tests) | @@ -166,16 +164,16 @@ conda config --add channels conda-forge conda config --set channel_priority strict ``` -Once the `conda-forge` channel has been enabled, `apache-arrow-proc, arrow-cpp, arrow-cpp-proc, libarrow, pyarrow, pyarrow-tests` can be installed with `conda`: +Once the `conda-forge` channel has been enabled, `apache-arrow-proc, libarrow, pyarrow, pyarrow-tests` can be installed with `conda`: ``` -conda install apache-arrow-proc arrow-cpp arrow-cpp-proc libarrow pyarrow pyarrow-tests +conda install apache-arrow-proc libarrow pyarrow pyarrow-tests ``` or with `mamba`: ``` -mamba install apache-arrow-proc arrow-cpp arrow-cpp-proc libarrow pyarrow pyarrow-tests +mamba install apache-arrow-proc libarrow pyarrow pyarrow-tests ``` It is possible to list all of the versions of `apache-arrow-proc` available on your platform with `conda`: From c7f8046a6f42a89714dbb16a93cecce270b3aca8 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Thu, 14 Sep 2023 15:44:49 +1100 Subject: [PATCH 14/14] avoid solver picking up ancient s3fs versions --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 90dd28f21..b585360db 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -340,7 +340,7 @@ outputs: - hypothesis - minio-server - pandas - - s3fs + - s3fs >=2023 - scipy - sparse >=0.14 # these are generally (far) behind on migrating abseil/grpc/protobuf,