You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ra...@apache.org on 2023/11/14 14:55:14 UTC

(arrow-cookbook) branch main updated: [Release] Update wrong arrow and pyarrow versions to 14.0.0 (#335)

This is an automated email from the ASF dual-hosted git repository.

raulcd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-cookbook.git


The following commit(s) were added to refs/heads/main by this push:
     new cc249ec  [Release] Update wrong arrow and pyarrow versions to 14.0.0 (#335)
cc249ec is described below

commit cc249ec61fabc3a5558625b522ec6dcd4152dedb
Author: Raúl Cumplido <ra...@gmail.com>
AuthorDate: Tue Nov 14 08:55:09 2023 -0600

    [Release] Update wrong arrow and pyarrow versions to 14.0.0 (#335)
    
    We did not update the cookbooks from 12.0.0 to 13.0.0 and when updating
    from 12.0.0 to 14.0.0 the script missed the following version updates
    because I used:
    `./dev/release/01-bump-versions.sh 13.0.0 14.0.0` instead of
    `./dev/release/01-bump-versions.sh 12.0.0 14.0.0`
    Manually update the missing updates to run cookbooks consistently for
    14.0.0.
    
    This commit will have to be cherry-picked to the `stable` branch once
    merged.
---
 cpp/environment.yml     | 4 ++--
 python/requirements.txt | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/cpp/environment.yml b/cpp/environment.yml
index 835965b..6c25809 100644
--- a/cpp/environment.yml
+++ b/cpp/environment.yml
@@ -20,10 +20,10 @@ channels:
 dependencies:
   - python=3.9
   - compilers
-  - arrow-cpp==12.0.0
+  - arrow-cpp==14.0.0
   - sphinx
   - gtest
   - gmock
-  - pyarrow==12.0.0
+  - pyarrow==14.0.0
   - clang-tools
   - zlib
diff --git a/python/requirements.txt b/python/requirements.txt
index f274967..5333939 100644
--- a/python/requirements.txt
+++ b/python/requirements.txt
@@ -1,5 +1,5 @@
 Sphinx>=4.0.2
-pyarrow==12.0.0
+pyarrow==14.0.0
 pandas>=1.2.5
 opentelemetry-api>=1.0.0
 opentelemetry-sdk>=1.0.0
\ No newline at end of file