Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump up pyarrow version #6814

Merged
merged 2 commits into from
Dec 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,13 @@ It is recommended to use a pip version greater than or equal to 19.3 to ease the

.. tabs::

.. group-tab:: Python 3.7–3.10
.. group-tab:: Python 3.7

.. code-block:: console

# pip3 install --upgrade pip

.. group-tab:: Python 3.8–3.10

.. code-block:: console

Expand All @@ -66,11 +72,11 @@ It is recommended to use a pip version greater than or equal to 19.3 to ease the
.. code-block:: console

# pip3 install --upgrade pip --break-system-packages

.. note::

This command modifies the default externally managed Python environment. See the `PEP 668 <https://peps.python.org/pep-0668/>`__ description for more information.

To prevent the modification, you can run ``pip3 install --upgrade pip`` within a virtual environment. You must update the ``aws-s3`` script shebang with your virtual environment interpreter, for example, ``#!/path/to/your/virtual/environment/bin/python3``.


Expand All @@ -85,18 +91,24 @@ To install the dependencies, execute the following command:

.. tabs::

.. group-tab:: Python 3.7–3.10
.. group-tab:: Python 3.7

.. code-block:: console

# pip3 install boto3==1.17.85 botocore==1.20.85 jmespath==0.9.5 python-dateutil==2.8.1 six==1.14.0 urllib3==1.26.5 s3transfer==0.4.2 pyarrow==8.0.0 pyarrow_hotfix==0.5


.. group-tab:: Python 3.8–3.10

.. code-block:: console

# pip3 install boto3==1.17.85 botocore==1.20.85 jmespath==0.9.5 python-dateutil==2.8.1 six==1.14.0 urllib3==1.26.5 s3transfer==0.4.2 pyarrow==14.0.1

.. group-tab:: Python 3.11

.. code-block:: console

# pip3 install --break-system-packages boto3==1.17.85 botocore==1.20.85 jmespath==0.9.5 python-dateutil==2.8.1 six==1.14.0 urllib3==1.26.5 s3transfer==0.4.2 pyarrow==13.0.0 pyarrow_hotfix==0.5
# pip3 install --break-system-packages boto3==1.17.85 botocore==1.20.85 jmespath==0.9.5 python-dateutil==2.8.1 six==1.14.0 urllib3==1.26.5 s3transfer==0.4.2 pyarrow==14.0.1

.. note::

If you're using a virtual environment, remove the ``--break-system-packages`` parameter from the command above.