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

Cannot install pyarrow on macOS "Big Sur" with pyenv and Python 3.9 #3627

Closed
3 tasks done
maxcountryman opened this issue Jan 31, 2021 · 10 comments
Closed
3 tasks done
Labels
status/external-issue Issue is caused by external project (platform, dep, etc)

Comments

@maxcountryman
Copy link

maxcountryman commented Jan 31, 2021

  • I am on the latest Poetry version.
  • I have searched the issues of this repo and believe that this is not a duplicate.
  • If an exception occurs when executing a command, I executed it again in debug mode (-vvv option).

Issue

I'm unable to install pyarrow via poetry add pyarrow on macOS 11.1 "Big Sur" into a virtualenv which uses Python 3.9.0 via pyenv.

Here's the error I see:

    ...
    installing to build/bdist.macosx-11.1-x86_64/wheel
    running install
    running install_lib
    creating build/bdist.macosx-11.1-x86_64
    creating build/bdist.macosx-11.1-x86_64/wheel
    creating build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/public-api.pxi -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/io.pxi -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/serialization.pxi -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/orc.py -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/_compute.pyx -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/_orc.pxd -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/builder.pxi -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/array.pxi -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/_generated_version.py -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/compat.py -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/_cuda.pyx -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/benchmark.py -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/parquet.py -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/_csv.pyx -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/config.pxi -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/_dataset.pyx -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/_flight.pyx -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/ipc.py -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/util.py -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/flight.py -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/tensor.pxi -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/__init__.pxd -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    copying build/lib.macosx-11.1-x86_64-3.9/pyarrow/cffi.py -> build/bdist.macosx-11.1-x86_64/wheel/pyarrow
    creating build/bdist.macosx-11.1-x86_64/wheel/pyarrow/include
    error: can't copy 'build/lib.macosx-11.1-x86_64-3.9/pyarrow/include/arrow': doesn't exist or not a regular file
    ----------------------------------------
    ERROR: Failed building wheel for pyarrow
  Failed to build pyarrow
  ERROR: Could not build wheels for pyarrow which use PEP 517 and cannot be installed directly

  at ~/.poetry/lib/poetry/utils/env.py:1074 in _run
      1070│                 output = subprocess.check_output(
      1071│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1072│                 )
      1073│         except CalledProcessError as e:
    → 1074│             raise EnvCommandError(e, input=input_)
      1075│
      1076│         return decode(output)
      1077│
      1078│     def execute(self, bin, *args, **kwargs):

It seems there is a wheel for macOS 11, but it's not being used by Poetry. For instance, I am able to install pyarrow via pip via pip install pyarrow, so I'm wondering why Poetry isn't able to manage.

@maxcountryman maxcountryman added kind/bug Something isn't working as expected status/triage This issue needs to be triaged labels Jan 31, 2021
@sinoroc
Copy link

sinoroc commented Jan 31, 2021

Looks like a duplicate bug report to me.

@dbanty
Copy link

dbanty commented Feb 1, 2021

Specifically a duplicate of #3591, right @sinoroc ?

@sinoroc
Copy link

sinoroc commented Feb 1, 2021

@dbanty Yes, this looks like one of them. There are quite some issues reported regarding bigsur/new cpu, I lost track of what is what exactly. But anyway it is a known issue, and it is mostly solved (as far as I can tell), just need patience until it is released.

@sinoroc
Copy link

sinoroc commented Feb 1, 2021

Maybe this is the most complete ticket on the topic: #3458 (assuming it is indeed the same root cause).

@ybroze
Copy link

ybroze commented May 13, 2021

I'm actually encountering the same problem using pip, on Big Sur 11.2.3 and a fresh pyenv-managed Python 3.9.4 installation, on M1 Silicon:

...
  running install
  running install_lib
  creating build/bdist.macosx-11.2-arm64
  creating build/bdist.macosx-11.2-arm64/wheel
  creating build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/public-api.pxi -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/io.pxi -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/serialization.pxi -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/orc.py -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/_compute.pyx -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/_orc.pxd -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/builder.pxi -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/array.pxi -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/_generated_version.py -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/compat.py -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/_cuda.pyx -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/benchmark.py -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/parquet.py -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/_csv.pyx -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/config.pxi -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/_dataset.pyx -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/_flight.pyx -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/ipc.py -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/util.py -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/flight.py -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/tensor.pxi -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/__init__.pxd -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  copying build/lib.macosx-11.2-arm64-3.9/pyarrow/cffi.py -> build/bdist.macosx-11.2-arm64/wheel/pyarrow
  creating build/bdist.macosx-11.2-arm64/wheel/pyarrow/include
  error: can't copy 'build/lib.macosx-11.2-arm64-3.9/pyarrow/include/arrow': doesn't exist or not a regular file
  ----------------------------------------
  ERROR: Failed building wheel for pyarrow
Failed to build pyarrow
ERROR: Could not build wheels for pyarrow which use PEP 517 and cannot be installed directly

This makes me think the issue is not with Poetry, but in the pyarrow package itself.

@dbanty
Copy link

dbanty commented May 14, 2021

@ybroze I'm fairly certain the issue that was in Poetry has been fixed in the latest versions. There are a couple related issues though:

  1. Everything but the latest versions of pip don't know how to install things for Big Sur. Any time I create a virtual env at this point I have to do a pip install --upgrade pip to be confident.
  2. Some packages that have native code may not have wheels for Apple Silicon, which might mean you have to build from source. Building from source definitely will require the latest pip if that package uses PEP 517 (which pyarrow appears to).

@ryan-williams
Copy link

ryan-williams commented Jul 22, 2021

Update: I just noticed this GitHub issue is on the Poetry repository; it looks like ARROW-13053 is the correct issue tracking this on the Arrow side, and it should be fixed with Arrow 5.0.0, which is not released yet.


I'm unable to pip install pyarrow in Python 3.9.5 and 3.8.10 on a M1 Macbook / Big Sur 11.4, with the same error listed by others above:

error: can't copy 'build/lib.macosx-11.4-arm64-3.8/pyarrow/include/arrow': doesn't exist or not a regular file
Here is a full build output
$ pip install --no-clean pyarrow
Collecting pyarrow
  Using cached pyarrow-4.0.1.tar.gz (711 kB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
Collecting numpy>=1.16.6
  Using cached numpy-1.21.1-cp38-cp38-macosx_11_0_arm64.whl (12.3 MB)
Building wheels for collected packages: pyarrow
  Building wheel for pyarrow (PEP 517) ... error
  ERROR: Command errored out with exit status 1:
   command: /Users/ryan/.pyenv/versions/3.8.10/envs/ctbk-3.8.10/bin/python /Users/ryan/.pyenv/versions/3.8.10/envs/ctbk-3.8.10/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/_in_process.py build_wheel /var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/tmpbwqdg0wd
       cwd: /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48
  Complete output (2455 lines):
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build/lib.macosx-11.4-arm64-3.8
  creating build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/orc.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_generated_version.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/compat.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/benchmark.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/parquet.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/ipc.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/util.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/flight.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/cffi.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/filesystem.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/__init__.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/plasma.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/types.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/dataset.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/cuda.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/feather.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/pandas_compat.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/fs.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/csv.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/jvm.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/hdfs.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/json.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/serialization.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/compute.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  creating build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_tensor.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_ipc.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/conftest.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_convert_builtin.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_misc.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_gandiva.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/strategies.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_adhoc_memory_leak.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/arrow_7980.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/util.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_orc.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_table.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_array.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_deprecations.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_serialization_deprecated.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/__init__.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_io.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_cuda_numba_interop.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_cffi.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_schema.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_jvm.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_plasma_tf_op.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_fs.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_filesystem.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/pandas_threaded_import.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/pandas_examples.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_cython.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_sparse_tensor.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_dataset.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_builder.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_cuda.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_extension_type.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_feather.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_pandas.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_memory.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_flight.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_json.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_serialization.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_compute.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_hdfs.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/deserialize_buffer.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_strategies.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_csv.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_plasma.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_scalars.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  copying pyarrow/tests/test_types.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  running egg_info
  writing pyarrow.egg-info/PKG-INFO
  writing dependency_links to pyarrow.egg-info/dependency_links.txt
  writing entry points to pyarrow.egg-info/entry_points.txt
  writing requirements to pyarrow.egg-info/requires.txt
  writing top-level names to pyarrow.egg-info/top_level.txt
  reading manifest file 'pyarrow.egg-info/SOURCES.txt'
  reading manifest template 'MANIFEST.in'
  warning: no files found matching '../LICENSE.txt'
  warning: no files found matching '../NOTICE.txt'
  warning: no previously-included files matching '*.so' found anywhere in distribution
  warning: no previously-included files matching '*.pyc' found anywhere in distribution
  warning: no previously-included files matching '*~' found anywhere in distribution
  warning: no previously-included files matching '#*' found anywhere in distribution
  warning: no previously-included files matching '.git*' found anywhere in distribution
  warning: no previously-included files matching '.DS_Store' found anywhere in distribution
  no previously-included directories found matching '.asv'
  writing manifest file 'pyarrow.egg-info/SOURCES.txt'
  copying pyarrow/__init__.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_compute.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_compute.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_csv.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_csv.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_cuda.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_cuda.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_dataset.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_flight.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_fs.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_fs.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_hdfs.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_json.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_orc.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_orc.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_parquet.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_parquet.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_plasma.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/_s3fs.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/array.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/benchmark.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/builder.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/compat.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/config.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/error.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/feather.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/gandiva.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/io-hdfs.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/io.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/ipc.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/lib.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/lib.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/memory.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/pandas-shim.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/public-api.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/scalar.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/serialization.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/table.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/tensor.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  copying pyarrow/types.pxi -> build/lib.macosx-11.4-arm64-3.8/pyarrow
  creating build/lib.macosx-11.4-arm64-3.8/pyarrow/includes
  copying pyarrow/includes/__init__.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow/includes
  copying pyarrow/includes/common.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow/includes
  copying pyarrow/includes/libarrow.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow/includes
  copying pyarrow/includes/libarrow_cuda.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow/includes
  copying pyarrow/includes/libarrow_dataset.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow/includes
  copying pyarrow/includes/libarrow_flight.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow/includes
  copying pyarrow/includes/libarrow_fs.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow/includes
  copying pyarrow/includes/libgandiva.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow/includes
  copying pyarrow/includes/libplasma.pxd -> build/lib.macosx-11.4-arm64-3.8/pyarrow/includes
  creating build/lib.macosx-11.4-arm64-3.8/pyarrow/tensorflow
  copying pyarrow/tensorflow/plasma_op.cc -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tensorflow
  creating build/lib.macosx-11.4-arm64-3.8/pyarrow/vendored
  copying pyarrow/vendored/__init__.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/vendored
  copying pyarrow/vendored/version.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/vendored
  copying pyarrow/tests/pyarrow_cython_example.pyx -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests
  creating build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data
  creating build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/feather
  copying pyarrow/tests/data/feather/v0.17.0.version=2-compression=lz4.feather -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/feather
  creating build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/orc
  copying pyarrow/tests/data/orc/README.md -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/orc
  copying pyarrow/tests/data/orc/TestOrcFile.emptyFile.jsn.gz -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/orc
  copying pyarrow/tests/data/orc/TestOrcFile.emptyFile.orc -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/orc
  copying pyarrow/tests/data/orc/TestOrcFile.test1.jsn.gz -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/orc
  copying pyarrow/tests/data/orc/TestOrcFile.test1.orc -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/orc
  copying pyarrow/tests/data/orc/TestOrcFile.testDate1900.jsn.gz -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/orc
  copying pyarrow/tests/data/orc/TestOrcFile.testDate1900.orc -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/orc
  copying pyarrow/tests/data/orc/decimal.jsn.gz -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/orc
  copying pyarrow/tests/data/orc/decimal.orc -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/orc
  creating build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/parquet
  copying pyarrow/tests/data/parquet/v0.7.1.all-named-index.parquet -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/parquet
  copying pyarrow/tests/data/parquet/v0.7.1.column-metadata-handling.parquet -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/parquet
  copying pyarrow/tests/data/parquet/v0.7.1.parquet -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/parquet
  copying pyarrow/tests/data/parquet/v0.7.1.some-named-index.parquet -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/data/parquet
  creating build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/parquet
  copying pyarrow/tests/parquet/common.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/parquet
  copying pyarrow/tests/parquet/conftest.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/parquet
  copying pyarrow/tests/parquet/test_basic.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/parquet
  copying pyarrow/tests/parquet/test_compliant_nested_type.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/parquet
  copying pyarrow/tests/parquet/test_data_types.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/parquet
  copying pyarrow/tests/parquet/test_dataset.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/parquet
  copying pyarrow/tests/parquet/test_datetime.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/parquet
  copying pyarrow/tests/parquet/test_metadata.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/parquet
  copying pyarrow/tests/parquet/test_pandas.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/parquet
  copying pyarrow/tests/parquet/test_parquet_file.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/parquet
  copying pyarrow/tests/parquet/test_parquet_writer.py -> build/lib.macosx-11.4-arm64-3.8/pyarrow/tests/parquet
  running build_ext
  creating /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8
  -- Running cmake for pyarrow
  cmake -DPYTHON_EXECUTABLE=/Users/ryan/.pyenv/versions/3.8.10/envs/ctbk-3.8.10/bin/python -DPython3_EXECUTABLE=/Users/ryan/.pyenv/versions/3.8.10/envs/ctbk-3.8.10/bin/python  -DPYARROW_BUILD_CUDA=off -DPYARROW_BUILD_FLIGHT=off -DPYARROW_BUILD_GANDIVA=off -DPYARROW_BUILD_DATASET=off -DPYARROW_BUILD_ORC=off -DPYARROW_BUILD_PARQUET=off -DPYARROW_BUILD_PLASMA=off -DPYARROW_BUILD_S3=off -DPYARROW_BUILD_HDFS=off -DPYARROW_USE_TENSORFLOW=off -DPYARROW_BUNDLE_ARROW_CPP=off -DPYARROW_BUNDLE_BOOST=off -DPYARROW_GENERATE_COVERAGE=off -DPYARROW_BOOST_USE_SHARED=on -DPYARROW_PARQUET_USE_SHARED=on -DCMAKE_BUILD_TYPE=release /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48
  -- The C compiler identification is AppleClang 12.0.5.12050022
  -- The CXX compiler identification is AppleClang 12.0.5.12050022
  -- Detecting C compiler ABI info
  -- Detecting C compiler ABI info - done
  -- Check for working C compiler: /Library/Developer/CommandLineTools/usr/bin/cc - skipped
  -- Detecting C compile features
  -- Detecting C compile features - done
  -- Detecting CXX compiler ABI info
  -- Detecting CXX compiler ABI info - done
  -- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - skipped
  -- Detecting CXX compile features
  -- Detecting CXX compile features - done
  -- System processor: arm64
  -- Performing Test CXX_SUPPORTS_ARMV8_ARCH
  -- Performing Test CXX_SUPPORTS_ARMV8_ARCH - Success
  -- Arrow build warning level: PRODUCTION
  Configured for RELEASE build (set with cmake -DCMAKE_BUILD_TYPE={release,debug,...})
  -- Build Type: RELEASE
  -- Generator: Unix Makefiles
  -- Build output directory: /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/release
  -- Found Python3: /Users/ryan/.pyenv/versions/3.8.10/envs/ctbk-3.8.10/bin/python (found version "3.8.10") found components: Interpreter Development.Module NumPy
  -- Found Python3Alt: /Users/ryan/.pyenv/versions/3.8.10/envs/ctbk-3.8.10/bin/python
  CMake Warning (dev) at /opt/homebrew/Cellar/cmake/3.21.0/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:438 (message):
    The package name passed to `find_package_handle_standard_args` (PkgConfig)
    does not match the name of the calling package (Arrow).  This can lead to
    problems in calling code that expects `find_package` result variables
    (e.g., `_FOUND`) to follow a certain pattern.
  Call Stack (most recent call first):
    /opt/homebrew/Cellar/cmake/3.21.0/share/cmake/Modules/FindPkgConfig.cmake:70 (find_package_handle_standard_args)
    cmake_modules/FindArrow.cmake:39 (include)
    cmake_modules/FindArrowPython.cmake:46 (find_package)
    CMakeLists.txt:218 (find_package)
  This warning is for project developers.  Use -Wno-dev to suppress it.

  -- Found PkgConfig: /opt/homebrew/bin/pkg-config (found version "0.29.2")
  -- Looking for pthread.h
  -- Looking for pthread.h - found
  -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
  -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
  -- Found Threads: TRUE
  -- Found Snappy: /opt/homebrew/lib/libsnappy.dylib
  -- Checking for modules 'libbrotlicommon;libbrotlienc;libbrotlidec'
  --   Found libbrotlicommon, version 1.0.9
  --   Found libbrotlienc, version 1.0.9
  --   Found libbrotlidec, version 1.0.9
  -- Found Brotli: /opt/homebrew/Cellar/brotli/1.0.9/lib/libbrotlicommon.dylib
  -- Found OpenSSL: /opt/homebrew/opt/[email protected]/lib/libcrypto.dylib (found version "1.1.1k")
  -- Found Protobuf: /opt/homebrew/lib/libprotobuf.dylib (found version "3.17.3")
  -- Found ZLIB: /Library/Developer/CommandLineTools/SDKs/MacOSX11.3.sdk/usr/lib/libz.tbd (found version "1.2.11")
  -- Checking for module 'liblz4'
  --   Found liblz4, version 1.9.3
  -- Found Lz4: /opt/homebrew/Cellar/lz4/1.9.3/lib/liblz4.dylib
  -- Checking for module 'libzstd'
  --   Found libzstd, version 1.5.0
  -- Found zstd: /opt/homebrew/Cellar/zstd/1.5.0/lib/libzstd.dylib
  -- Found BZip2: /Library/Developer/CommandLineTools/SDKs/MacOSX11.3.sdk/usr/lib/libbz2.tbd (found version "1.0.6")
  -- Looking for BZ2_bzCompressInit
  -- Looking for BZ2_bzCompressInit - found
  -- Found utf8proc: /opt/homebrew/lib/libutf8proc.dylib
  -- Found c-ares: /opt/homebrew/lib/cmake/c-ares/c-ares-config.cmake (found version "1.17.1")
  -- Found Arrow: /opt/homebrew/include (found version "4.0.1")
  -- Arrow version: 4.0.1 (CMake package configuration: Arrow)
  -- Arrow SO and ABI version: 400
  -- Arrow full SO version: 400.1.0
  -- Found the Arrow core shared library: /opt/homebrew/lib/libarrow.400.1.0.dylib
  -- Found the Arrow core import library:
  -- Found the Arrow core static library: /opt/homebrew/lib/libarrow.a
  -- Could NOT find ArrowPython (missing: ArrowPython_DIR)
  -- Checking for module 'arrow-python'
  --   Found arrow-python, version 4.0.1
  -- Found ArrowPython: /opt/homebrew/Cellar/apache-arrow/4.0.1_2/include (found version "4.0.1")
  -- Found the Arrow Python by pkg-config: arrow-python
  -- Found the Arrow Python shared library: /opt/homebrew/Cellar/apache-arrow/4.0.1_2/lib/libarrow_python.dylib
  -- Found the Arrow Python import library:
  -- Found the Arrow Python static library: /opt/homebrew/Cellar/apache-arrow/4.0.1_2/lib/libarrow_python.a
  -- Configuring done
  -- Generating done
  -- Build files have been written to: /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8
  -- Finished cmake for pyarrow
  -- Running cmake --build for pyarrow
  cmake --build . --config release --
  [  6%] Compiling Cython CXX source for _csv...
  [  6%] Built target _csv_pyx
  [ 13%] Building CXX object CMakeFiles/_csv.dir/_csv.cpp.o
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_csv.cpp:17810:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_csv.cpp:18026:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_csv.cpp:18268:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_csv.cpp:18380:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_csv.cpp:18511:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_csv.cpp:18640:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_csv.cpp:19061:133: warning: offset of on non-standard-layout type 'struct __pyx_obj_7pyarrow_4_csv_ConvertOptions' [-Winvalid-offsetof]
    if (__pyx_type_7pyarrow_4_csv_ConvertOptions.tp_weaklistoffset == 0) __pyx_type_7pyarrow_4_csv_ConvertOptions.tp_weaklistoffset = offsetof(struct __pyx_obj_7pyarrow_4_csv_ConvertOptions, __pyx_base.__weakref__);
                                                                                                                                      ^                                                        ~~~~~~~~~~
  /Library/Developer/CommandLineTools/usr/lib/clang/12.0.5/include/stddef.h:104:24: note: expanded from macro 'offsetof'
  #define offsetof(t, d) __builtin_offsetof(t, d)
                         ^                     ~
  7 warnings generated.
  [ 20%] Linking CXX shared module release/_csv.cpython-38-darwin.so
  [ 20%] Built target _csv
  [ 26%] Compiling Cython CXX source for lib...
  [ 26%] Built target lib_pyx
  [ 33%] Building CXX object CMakeFiles/lib.dir/lib.cpp.o
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:187861:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:188050:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:188176:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:188272:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:188429:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:188539:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:188649:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:188759:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:188874:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:188998:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:189097:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:189212:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:189323:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:189423:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:189523:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:189623:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:189728:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:189838:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:189948:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:190053:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:190169:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:190267:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:190342:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:190494:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:190675:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:190867:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:191002:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:191084:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:191321:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:191532:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:191726:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:191920:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:192121:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:192313:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:192408:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:192517:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:192612:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:192707:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:192802:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:192897:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:192992:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:193087:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:193182:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:193277:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:193372:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:193467:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:193562:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:193657:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:193752:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:193847:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:193942:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:194037:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:194132:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:194234:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:194336:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:194450:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:194564:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:194678:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:194788:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:194905:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:195005:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:195109:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:195266:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:195377:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:195616:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:195834:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:196058:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:196256:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:196344:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:196503:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:196597:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:196691:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:196784:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:196877:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:196987:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:197099:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:197209:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:197311:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:197455:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:197819:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:197916:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:198013:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:198149:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:198244:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:198339:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:198443:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:198543:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:198639:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:198735:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:198831:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:198927:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:199023:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:199119:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:199215:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:199311:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:199407:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:199503:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:199599:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:199695:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:199791:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:199887:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:199983:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:200079:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:200175:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:200271:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:200367:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:200472:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:200577:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:200674:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:200765:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:200856:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:200952:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:201043:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:201174:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:201269:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:201364:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:201486:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:201616:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:201743:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:201848:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:201943:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:202038:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:202133:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:202228:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:202323:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:202418:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:202518:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:202622:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:202752:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:202889:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:203025:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:203160:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:203260:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:203370:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:203468:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:203602:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:203695:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:203905:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:204045:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:204210:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:204311:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:204433:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:204548:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:204630:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:204784:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:204896:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:205073:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:205216:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:205322:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:205428:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:205543:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:205661:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:205767:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:205873:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:205979:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:206085:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:206195:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:206317:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:206423:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:206545:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:206659:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:206773:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:206888:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:207002:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:207117:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:207231:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:207346:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:207460:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:207575:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:207689:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:207818:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:207940:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:208046:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:208164:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:208279:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:208389:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:208518:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:228915:5: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
      0,
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/lib.cpp:233549:5: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
      0,
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  179 warnings generated.
  [ 40%] Linking CXX shared module release/lib.cpython-38-darwin.so
  [ 40%] Built target lib
  [ 46%] Compiling Cython CXX source for _compute...
  [ 46%] Built target _compute_pyx
  [ 53%] Building CXX object CMakeFiles/_compute.dir/_compute.cpp.o
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:26291:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:26381:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:26470:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:26559:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:26648:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:26737:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:26863:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:26959:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:27055:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:27151:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:27247:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:27343:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:27435:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:27616:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:27714:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:27812:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:27910:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:28008:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:28106:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:28204:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:28302:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:28400:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:28498:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:28596:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:28694:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:28792:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:28892:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:28990:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:29088:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:29186:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:29284:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:29382:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:29480:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:29578:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:29676:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_compute.cpp:35636:5: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
      0,
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  36 warnings generated.
  [ 60%] Linking CXX shared module release/_compute.cpython-38-darwin.so
  [ 60%] Built target _compute
  [ 66%] Compiling Cython CXX source for _json...
  [ 66%] Built target _json_pyx
  [ 73%] Building CXX object CMakeFiles/_json.dir/_json.cpp.o
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_json.cpp:6976:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_json.cpp:7120:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  2 warnings generated.
  [ 80%] Linking CXX shared module release/_json.cpython-38-darwin.so
  [ 80%] Built target _json
  [ 86%] Compiling Cython CXX source for _fs...
  [ 86%] Built target _fs_pyx
  [ 93%] Building CXX object CMakeFiles/_fs.dir/_fs.cpp.o
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_fs.cpp:21052:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_fs.cpp:21198:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_fs.cpp:21342:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_fs.cpp:21427:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_fs.cpp:21525:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_fs.cpp:21610:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_fs.cpp:21703:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_fs.cpp:21818:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_fs.cpp:21947:3: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
    0, /*tp_print*/
    ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/temp.macosx-11.4-arm64-3.8/_fs.cpp:26431:5: warning: 'tp_print' is deprecated [-Wdeprecated-declarations]
      0,
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/cpython/object.h:260:5: note: 'tp_print' has been explicitly marked deprecated here
      Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
      ^
  /Users/ryan/.pyenv/versions/3.8.10/include/python3.8/pyport.h:515:54: note: expanded from macro 'Py_DEPRECATED'
  #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
                                                       ^
  10 warnings generated.
  [100%] Linking CXX shared module release/_fs.cpython-38-darwin.so
  [100%] Built target _fs
  -- Finished cmake --build for pyarrow
  Bundling includes: release/include
  Moving built C-extension release/lib.cpython-38-darwin.so to build path /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/lib.macosx-11.4-arm64-3.8/pyarrow/lib.cpython-38-darwin.so
  Moving built C-extension release/_fs.cpython-38-darwin.so to build path /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/lib.macosx-11.4-arm64-3.8/pyarrow/_fs.cpython-38-darwin.so
  Moving built C-extension release/_csv.cpython-38-darwin.so to build path /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/lib.macosx-11.4-arm64-3.8/pyarrow/_csv.cpython-38-darwin.so
  Moving built C-extension release/_json.cpython-38-darwin.so to build path /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/lib.macosx-11.4-arm64-3.8/pyarrow/_json.cpython-38-darwin.so
  Moving built C-extension release/_compute.cpython-38-darwin.so to build path /private/var/folders/dc/gqj_cd8d0d9c1nppd5_yl7bc0000gn/T/pip-install-hw19_jqr/pyarrow_81bec64c72dd46c681d731eb3a6f2e48/build/lib.macosx-11.4-arm64-3.8/pyarrow/_compute.cpython-38-darwin.so
  Did not find release/_cuda.cpython-38-darwin.so
  Cython module _cuda failure permitted
  Did not find release/_flight.cpython-38-darwin.so
  Cython module _flight failure permitted
  Did not find release/_dataset.cpython-38-darwin.so
  Cython module _dataset failure permitted
  Did not find release/_parquet.cpython-38-darwin.so
  Cython module _parquet failure permitted
  Did not find release/_orc.cpython-38-darwin.so
  Cython module _orc failure permitted
  Did not find release/_plasma.cpython-38-darwin.so
  Cython module _plasma failure permitted
  Did not find release/_s3fs.cpython-38-darwin.so
  Cython module _s3fs failure permitted
  Did not find release/_hdfs.cpython-38-darwin.so
  Cython module _hdfs failure permitted
  Did not find release/gandiva.cpython-38-darwin.so
  Cython module gandiva failure permitted
  installing to build/bdist.macosx-11.4-arm64/wheel
  running install
  running install_lib
  creating build/bdist.macosx-11.4-arm64
  creating build/bdist.macosx-11.4-arm64/wheel
  creating build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/public-api.pxi -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/io.pxi -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/serialization.pxi -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/orc.py -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/_compute.pyx -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/_orc.pxd -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/builder.pxi -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/array.pxi -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/_generated_version.py -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/compat.py -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/_cuda.pyx -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/benchmark.py -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/parquet.py -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/_csv.pyx -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/config.pxi -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/_dataset.pyx -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/_flight.pyx -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/ipc.py -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/util.py -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/flight.py -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/tensor.pxi -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/__init__.pxd -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  copying build/lib.macosx-11.4-arm64-3.8/pyarrow/cffi.py -> build/bdist.macosx-11.4-arm64/wheel/pyarrow
  creating build/bdist.macosx-11.4-arm64/wheel/pyarrow/include
  error: can't copy 'build/lib.macosx-11.4-arm64-3.8/pyarrow/include/arrow': doesn't exist or not a regular file
  ----------------------------------------
  ERROR: Failed building wheel for pyarrow
Failed to build pyarrow
ERROR: Could not build wheels for pyarrow which use PEP 517 and cannot be installed directly

When I go into the temporary pip build directory (thanks to --no-clean above), I see this:

$ ls -l lib.macosx-11.4-arm64-3.8/pyarrow/include/arrow
lrwxr-xr-x 1 ryan staff 44 Jul 22 09:51 lib.macosx-11.4-arm64-3.8/pyarrow/include/arrow -> ../Cellar/apache-arrow/4.0.1_2/include/arrow
$ ls -lH lib.macosx-11.4-arm64-3.8/pyarrow/include/arrow
ls: cannot access 'lib.macosx-11.4-arm64-3.8/pyarrow/include/arrow': No such file or directory

I used brew install apache-arrow to get Arrow installed, and the broken link (../Cellar/apache-arrow/4.0.1_2/include/arrow) looks suspiciously like a relative symlink from /opt/homebrew/opt was copied into the pip build dir (and became broken, since the relative path was no longer meaningful), and then had some extra subdirectories added to the end (specifically include/arrow):

$ brew --prefix apache-arrow
/opt/homebrew/opt/apache-arrow
$ ls -l "$(brew --prefix apache-arrow)"
lrwxr-xr-x 1 ryan admin 30 Jul 22 09:35 /opt/homebrew/opt/apache-arrow -> ../Cellar/apache-arrow/4.0.1_2

Maybe somewhere in the pyarrow build process, the system Arrow root is copied in a way that can be modified to dereference symlinks? I'll poke at it a bit more but it's not super familiar territory for me.

@Q-back
Copy link

Q-back commented Jul 23, 2021

I can confirm it's not poetry issue, but pyarrow issue, as I was not able to install it with pip as well. My workaround was to download pyarrow source, change numpy dependency in requirements.txt to 1.21 which is actually possible to build on M1 and build it from source 😒

@mkniewallner mkniewallner added status/external-issue Issue is caused by external project (platform, dep, etc) and removed kind/bug Something isn't working as expected labels Jun 26, 2022
@mkniewallner
Copy link
Member

Closing, since this appeared to be an issue with the package itself.

@mkniewallner mkniewallner removed the status/triage This issue needs to be triaged label Jun 29, 2022
Copy link

github-actions bot commented Mar 1, 2024

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Mar 1, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
status/external-issue Issue is caused by external project (platform, dep, etc)
Projects
None yet
Development

No branches or pull requests

7 participants