pypa / pipenv

Python Development Workflow for Humans.
https://pipenv.pypa.io
MIT License
24.86k stars 1.86k forks source link

Pipenv failed to build wheels (PEP 517) #4576

Closed gennaro-tedesco closed 2 years ago

gennaro-tedesco commented 3 years ago

Given the following:

$ python3 -V
Python 3.9.1

$ pipenv --version
pipenv, version 2020.11.15

$ pip --version
pip 20.3.3

Let us consider mkdir test && cd test the following minimal Pipfile

[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
pandas = "*"

Running a simple pipenv install generates a mile long error message whose last bits are

  ...
  ----------------------------------------
  ERROR: Failed building wheel for numpy
Failed to build numpy
ERROR: Could not build wheels for numpy which use PEP 517 and cannot be installed directly
...
...
pipenv.patched.notpip._internal.exceptions.InstallationError: Command errored out with exit status 1: /~/.local/share/virtualenvs/test-mmObi3rW/bin/python /usr/local/lib/python3.9/site-packages/pipenv/patched/notpip install --ignore-installed --no-user --prefix /private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-build-env-lje2m4uc/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- setuptools wheel 'Cython>=0.29.21,<3' 'numpy==1.15.4; python_version=='"'"'3.6'"'"' and platform_system!='"'"'AIX'"'"'' 'numpy==1.15.4; python_version=='"'"'3.7'"'"' and platform_system!='"'"'AIX'"'"'' 'numpy==1.17.3; python_version=='"'"'3.8'"'"' and platform_system!='"'"'AIX'"'"'' 'numpy==1.16.0; python_version=='"'"'3.6'"'"' and platform_system=='"'"'AIX'"'"'' 'numpy==1.16.0; python_version=='"'"'3.7'"'"' and platform_system=='"'"'AIX'"'"'' 'numpy==1.17.3; python_version=='"'"'3.8'"'"' and platform_system=='"'"'AIX'"'"'' 'numpy; python_version>='"'"'3.9'"'"'' Check the logs for full command output.

This problem has been touched already for instance here, here and here concering pip. Apparently the suggestion is to explicitly include the flag --no-use-pep517 which however does not work in conjunction with pipenv, producing pipenv.vendor.requirementslib.exceptions.RequirementError: Failed parsing requirement from '--no-use-pep517'.

It seems there is also a general problem with the version 2020.11.15, I do not exactly understand whether related or not. If instead of pandas one installs pipenv install request (or any other package not containing particular dependencies) the installation works fine, which makes me think the problem is indeed the building of the numpy wheels.

What is the right procedure in this case to just proceed with the installation?


$ pipenv --support Pipenv version: `'2020.11.15'` Pipenv location: `'/usr/local/lib/python3.9/site-packages/pipenv'` Python location: `'/usr/local/opt/python@3.9/bin/python3.9'` Python installations found: - `3.9.1`: `~/.local/share/virtualenvs/test-mmObi3rW/bin/python3` - `3.9.1`: `~/.local/share/virtualenvs/test-mmObi3rW/bin/python3.9` - `3.9.1`: `~/.local/share/virtualenvs/test-mmObi3rW/bin/python3` - `3.9.1`: `~/.local/share/virtualenvs/test-mmObi3rW/bin/python3.9` - `3.9.1`: `/usr/local/bin/python3` - `3.9.1`: `/usr/local/bin/python3.9` - `3.8.2`: `/usr/bin/python3` - `2.7.16`: `/usr/bin/python2` - `2.7.16`: `/usr/bin/python2.7` PEP 508 Information: ``` {'implementation_name': 'cpython', 'implementation_version': '3.9.1', 'os_name': 'posix', 'platform_machine': 'x86_64', 'platform_python_implementation': 'CPython', 'platform_release': '20.2.0', 'platform_system': 'Darwin', 'platform_version': 'Darwin Kernel Version 20.2.0: Wed Dec 2 20:39:59 PST ' '2020; root:xnu-7195.60.75~1/RELEASE_X86_64', 'python_full_version': '3.9.1', 'python_version': '3.9', 'sys_platform': 'darwin'} ``` System environment variables: - `TERM_SESSION_ID` - `SSH_AUTH_SOCK` - `LC_TERMINAL_VERSION` - `COLORFGBG` - `ITERM_PROFILE` - `XPC_FLAGS` - `PWD` - `SHELL` - `__CFBundleIdentifier` - `LC_CTYPE` - `TERM_PROGRAM_VERSION` - `TERM_PROGRAM` - `PATH` - `LC_TERMINAL` - `COLORTERM` - `COMMAND_MODE` - `TERM` - `HOME` - `TMPDIR` - `USER` - `XPC_SERVICE_NAME` - `LOGNAME` - `ITERM_SESSION_ID` - `__CF_USER_TEXT_ENCODING` - `SHLVL` - `OLDPWD` - `P9K_TTY` - `ZSH` - `PAGER` - `LESS` - `LSCOLORS` - `P9K_SSH` - `EDITOR` - `LANG` - `MANPAGER` - `FZF_DEFAULT_OPTS` - `FZF_DEFAULT_COMMAND` - `PIP_DISABLE_PIP_VERSION_CHECK` - `PYTHONDONTWRITEBYTECODE` - `PIP_PYTHON_PATH` - `PIPENV_ACTIVE` - `VIRTUAL_ENV` - `PS1` - `_` - `PIP_SHIMS_BASE_MODULE` - `PYTHONFINDER_IGNORE_UNSUPPORTED` Pipenv–specific environment variables: - `PIPENV_ACTIVE`: `1` Debug–specific environment variables: - `PATH`: `~/.local/share/virtualenvs/test-mmObi3rW/bin:~/.cargo/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/usr/local/opt/fzf/bin` - `SHELL`: `/bin/zsh` - `EDITOR`: `vim` - `LANG`: `en_US.UTF-8` - `PWD`: `~/test` - `VIRTUAL_ENV`: `~/.local/share/virtualenvs/test-mmObi3rW` --------------------------- Contents of `Pipfile` ('~/test/Pipfile'): ```toml [[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi" [packages] pandas = "*" ```
frostming commented 3 years ago

--no-use-pep517 is not the correct path to resolving the issue, Pip will also remove the support in the future.

Can you install it via pipenv run pip install --no-use-pep517 numpy?

gennaro-tedesco commented 3 years ago

Can you install it via pipenv run pip install --no-use-pep517 numpy?

doing so produces the same error stated above, whose complete stacktrace is

Failed to build numpy
Installing collected packages: numpy
    Running setup.py install for numpy ... error
    ERROR: Command errored out with exit status 1:
     command: ~/.local/share/virtualenvs/test-mmObi3rW/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/setup.py'"'"'; __file__='"'"'/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-record-agkzau_0/install-record.txt --single-version-externally-managed --compile --install-headers /Users/gennarotedesco/.local/share/virtualenvs/test-mmObi3rW/include/site/python3.9/numpy
         cwd: /private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/
    Complete output (41 lines):
    Running from numpy source directory.

    Note: if you need reliable uninstall behavior, then install
    with pip instead of using `setup.py install`:

      - `pip install .`       (from a git repo or downloaded source
                               release)
      - `pip install numpy`   (last NumPy release on PyPi)

    Cythonizing sources
    numpy/random/_bounded_integers.pxd.in has not changed
    Processing numpy/random/_philox.pyx
    Traceback (most recent call last):
      File "/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/tools/cythonize.py", line 59, in process_pyx
        from Cython.Compiler.Version import version as cython_version
    ModuleNotFoundError: No module named 'Cython'

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last):
      File "/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/tools/cythonize.py", line 235, in <module>
        main()
      File "/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/tools/cythonize.py", line 231, in main
        find_process_files(root_dir)
      File "/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/tools/cythonize.py", line 222, in find_process_files
        process(root_dir, fromfile, tofile, function, hash_db)
      File "/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/tools/cythonize.py", line 188, in process
        processor_function(fromfile, tofile)
      File "/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/tools/cythonize.py", line 64, in process_pyx
        raise OSError('Cython needs to be installed in Python as a module')
    OSError: Cython needs to be installed in Python as a module
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/setup.py", line 508, in <module>
        setup_package()
      File "/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/setup.py", line 488, in setup_package
        generate_cython()
      File "/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/setup.py", line 285, in generate_cython
        raise RuntimeError("Running cythonize failed!")
    RuntimeError: Running cythonize failed!
    ----------------------------------------
ERROR: Command errored out with exit status 1: ~/.local/share/virtualenvs/test-mmObi3rW/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/setup.py'"'"'; __file__='"'"'/private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-install-r4nvpr4k/numpy/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-record-agkzau_0/install-record.txt --single-version-externally-managed --compile --install-headers ~/.local/share/virtualenvs/test-mmObi3rW/include/site/python3.9/numpy Check the logs for full command output.

Looking around some more on the internet I managed to make it work by means of the mysterious and obscure command export SYSTEM_VERSION_COMPAT=1, found somehow accidentally here.

--no-use-pep517 is not the correct path to resolving the issue, Pip will also remove the support in the future

What then exactly is the solution to the problem? More generally, is pipenv keeping up with pip and python updates and versionings? If so, there must be a way to install packages without having to perform workarounds as above, must it not?

frostming commented 3 years ago

Can you show the full error message of pipenv install --verbose?

Looking around some more on the internet I managed to make it work by means of the mysterious and obscure command export SYSTEM_VERSION_COMPAT=1

Yes, it does the trick by pretending the OS version to be macOS 10, which has a pre-built wheel on PyPI.

gennaro-tedesco commented 3 years ago

Can you show the full error message of pipenv install --verbose?

the output is

Installing pandas...
Installing package: pandas
Writing supplied requirement line to temporary file: 'pandas'
Installing 'pandas'
⠹ Installing pandas...$ ['/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/bin/pip', 'install', '--verbose', '--upgrade', '--exists-action=i', '-r', '/var/folders/1b/7jpz8y9d0d5cdbgtn0p3t86r0000gn/T/pipenv-z44s9rz5-requirements/pipenv-ut90xrs7-requirement.txt', '-i', 'https://pypi.org/simple']
Using source directory: '/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/src'
⠦ Installing pandas...
...
Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/de/e4/4befe49c9401a93add030057ba47338685011ebdd3adc855de036f319d7a/pandas-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=b578df33338a09707bfe3e3939c9d46700948133bf829357c3c46795055c9376 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/c1/21/480cef5f2c72f35afef7b68330672d651b7675ac66f0bff5761940a8bb28/pandas-1.0.0-cp36-cp36m-manylinux1_i686.whl#sha256=e8be4f6da608930c0d565240bfbe04fc6f5764d6a9214b02c6231cd5e223591d (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/12/d1/a6502c2f5c15b50f5dd579fc1c52b47edf6f2e9f682aed917dd7565b3e60/pandas-1.0.0-cp36-cp36m-manylinux1_x86_64.whl#sha256=d76a8ec22adf0323d362dac8c900b2c66e06eab984ecf04ef072866d8ab6c538 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/b5/e6/c9656667ebacc34891be9f12f07b9f7d995d279660ff07d97bd7b7452255/pandas-1.0.0-cp36-cp36m-win32.whl#sha256=bad77cf498362590ef3a30bc9e769f4fe4399d853861a1ddbefeea8cbf39906c (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/b7/6d/3eaa70da7dac8ca1bc5a26d50d94791aec8d346bc1d326c4d240aa64aca6/pandas-1.0.0-cp36-cp36m-win_amd64.whl#sha256=ae1ec10e34d22b0f699e38f346381630cae89d5050a2a61315a2be09e3435f99 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/4b/57/ffaa1e270aa6d57a154e1324b4dfa1666b8bd349bc40730604256adea50d/pandas-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=35d07389efaf3c478d93725a226941c7fc14714814ba77d6d43b2c9e63ef4af5 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/16/cf/5d4614610a6be006ea5715f76e261cb8bc0031a97e43f9915bddb404a3f5/pandas-1.0.0-cp37-cp37m-manylinux1_x86_64.whl#sha256=46b0a146e4ba744e350847244767ef297950e9ce02424734b2dd0befd77d9aff (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/a5/a9/265a1c3948765d5207618409c2efb555b22ac38125a36b292b4d10b78ac4/pandas-1.0.0-cp37-cp37m-win32.whl#sha256=6d5c2d2a3e42100700bac7fe762c17ba0a04d0355feac04bce74a1aa6c8be164 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/4b/45/b0507495da43373f366195421b383f7c7ba86a00e36def6ef6de438bc7d7/pandas-1.0.0-cp37-cp37m-win_amd64.whl#sha256=f66c63f357ac31c913f4917f55348ce99c639031567c3284f01dff605da58264 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/50/a6/7265e2557887430e39d89523577b848ff4586cd12caf986262ee810091aa/pandas-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=c36e4d44d34eaa503776a8fb57ba1305e680e178458c050c2fd8de67604fa209 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/8b/a0/ad2b2bef8e49aefef043fe97f981a9421ddda684fbf4be1e6b9f26cc3811/pandas-1.0.0-cp38-cp38-manylinux1_x86_64.whl#sha256=66c1a49b47c0953dbc6864a6d2578c4c24610f6bb8e4ab165d49b8371aa7745f (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/21/db/304252821df9db57adde942e1e76e97dd71d5f8ef8aef388a06036ded120/pandas-1.0.0-cp38-cp38-win32.whl#sha256=18bbce2e69855d42397486ee0bb79cb0e4c94af6679fd9392e32ffdb7fcfade0 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/75/36/f8510689a295627481cde0996b0653424e1ca279d2201f4835a096c42fa6/pandas-1.0.0-cp38-cp38-win_amd64.whl#sha256=ab1aa2c50b7c6ba0eccebb146b4d80ed7f5804897b8d54ccddbe49f28c881a94 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/26/c4/b3cd1c8928a496e27a8604160a4b6c672bda76cc215130848f68f01e0213/pandas-1.0.0.tar.gz#sha256=3ea6cc86931f57f18b1240572216f09922d91b19ab8a01cf24734394a3db3bec (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.0.0
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/51/35/c423a72da15788cad5de23d5b633da4eacaccdb5bba0d10be604fb08f192/pandas-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=74a470d349d52b9d00a2ba192ae1ee22155bb0a300fd1ccb2961006c3fa98ed3 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/9f/b8/b7cc2d9b3d6bfc0459aa80cf3d727e31688566699b8af5a7f9f67e414168/pandas-1.0.1-cp36-cp36m-manylinux1_i686.whl#sha256=e2140e1bbf9c46db9936ee70f4be6584d15ff8dc3dfff1da022d71227d53bad3 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/08/ec/b5dd8cfb078380fb5ae9325771146bccd4e8cad2d3e4c72c7433010684eb/pandas-1.0.1-cp36-cp36m-manylinux1_x86_64.whl#sha256=d10e83866b48c0cdb83281f786564e2a2b51a7ae7b8a950c3442ad3c9e36b48c (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/62/a3/da03d53ef4542682e0e6775a4f65617e4bf5e40d1af12b63240b8308b16d/pandas-1.0.1-cp36-cp36m-win32.whl#sha256=303827f0bb40ff610fbada5b12d50014811efcc37aaf6ef03202dc3054bfdda1 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/b8/3a/8982a33ea8cf3d729af7e9757aa30d1aee5464b0061706a5232430d66316/pandas-1.0.1-cp36-cp36m-win_amd64.whl#sha256=6f38969e2325056f9959efbe06c27aa2e94dd35382265ad0703681d993036052 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/ab/ba/f97030b7e8ec0a981abdca173de4e727b3a7b4ed5dba492f362ba87d59a2/pandas-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=2530aea4fe46e8df7829c3f05e0a0f821c893885d53cb8ac9b89cc67c143448c (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/61/af/ceb7523e86753d5643ed00e8c17a42bdcfe819782c3449d9bbbf5d01867a/pandas-1.0.1-cp37-cp37m-manylinux1_x86_64.whl#sha256=3b019e3ea9f5d0cfee0efabae2cfd3976874e90bcc3e97b29600e5a9b345ae3d (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/45/09/43aa9d98b96f16bb3c85e4b81b94a384c1a10f3378cfc0adfdc700295cfa/pandas-1.0.1-cp37-cp37m-win32.whl#sha256=23e177d43e4bf68950b0f8788b6a2fef2f478f4ec94883acb627b9264522a98a (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/51/99/b50cd5839e7a27d9b3ce8a29ac32eee3cf0b9581e6486e3906b71d2d461a/pandas-1.0.1-cp37-cp37m-win_amd64.whl#sha256=a9fbe41663416bb70ed05f4e16c5f377519c0dc292ba9aa45f5356e37df03a38 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/a4/67/5304587c84dc0eb4ba05a6405de5e9b539b20ffe1eb05410fb5ded512527/pandas-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl#sha256=7f9a509f6f11fa8b9313002ebdf6f690a7aa1dd91efd95d90185371a0d68220e (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/d2/91/a1b72f7041c5ee2d307cb6dd57fe5c6ed7bf54e248d59e41b31aceff00e2/pandas-1.0.1-cp38-cp38-manylinux1_x86_64.whl#sha256=942b5d04762feb0e55b2ad97ce2b254a0ffdd344b56493b04a627266e24f2d82 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/d9/02/efd55383399646d0bc3bf0078130ae08f2890dd68276e3f4d7a4e94539a4/pandas-1.0.1-cp38-cp38-win32.whl#sha256=7d77034e402165b947f43050a8a415aa3205abfed38d127ea66e57a2b7b5a9e0 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/68/db/4a6f569775c1dd762d3cbb0505ba0cd93a96db5f34e9fc761ff2a76daefa/pandas-1.0.1-cp38-cp38-win_amd64.whl#sha256=5036d4009012a44aa3e50173e482b664c1fae36decd277c49e453463798eca4e (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/02/c3/e8c56de02d6c52f8541feca2fd77117e8ae4956f7b3e5cdbed726624039b/pandas-1.0.1.tar.gz#sha256=3c07765308f091d81b6735d4f2242bb43c332cc3461cae60543df6b10967fe27 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.0.1
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/5b/6b/cacd906bda914e1d18d28e8c924c5053b1a529e72a75231626958fcefdeb/pandas-1.0.2-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=04fe02d492d917bbdf314f63517616c1cc7ac7c25495f322c7df5745583bf548 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/c8/3a/17c64879d54efd0e7906051b5962d1b76bfffbc378c8d6b3da15d45aa6a1/pandas-1.0.2-cp36-cp36m-manylinux1_i686.whl#sha256=4269c698d3f76889520b9e022702c975b5b19a63705a2e098694f5f8719c7287 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/f9/b9/9ad570258ce4fe504bd23002154f9e6f09bf7110359d271e4ba1664f7281/pandas-1.0.2-cp36-cp36m-manylinux1_x86_64.whl#sha256=7034fd811df432465fe2fec64637db84600b5f1d0e9d1123195360e2f9bf4b7d (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/68/d1/363c23f448ba5724cacef7fa596e65954cdc8274b882788ceecf111684f0/pandas-1.0.2-cp36-cp36m-win32.whl#sha256=3c76643abfe83f4f3a107d06bea64d4cf702afc97a7f3a3c54275f48c7378c54 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/84/c3/39afc36ad7eb858171e9eddf5ffa443990185657fd1304006047a4a6e510/pandas-1.0.2-cp36-cp36m-win_amd64.whl#sha256=dac3bf7495c7ce6a72dff2158c8ead0f377832491a672145829ac06d64782192 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/3c/84/9febb31306ddd96a0df726d6f4026cf3d99317dc3c3b318d98919bdee52e/pandas-1.0.2-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=e0e752699b4be387783506d34f12bef063b76ce1695aabfb0cd15bde82a3a5a7 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/df/16/1d75ca33204c2b34a0a9d1fc50567c2c8997ccaa3446dcd828482f3ebc47/pandas-1.0.2-cp37-cp37m-manylinux1_x86_64.whl#sha256=1a96b3e5172f194036d384fd9e853cbf94c42ec13bfebceb1eb0175c96f4e5d3 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/dd/1b/87a021ad6cfc9d5e0afa488597b1e1d65d144d45d8f6873adcf399a2506c/pandas-1.0.2-cp37-cp37m-win32.whl#sha256=37d2b9f7301177e7ba2de1ab8be929a0e2625821d1d21de5f2f2eddfa16742b4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/f7/b2/c1bc5cea74dee2717a796ecd6ed7e149247d244f357eb119e0d253708008/pandas-1.0.2-cp37-cp37m-win_amd64.whl#sha256=e462ca4a59daea2ba73ac87186d638d7a43a86ec063705cf9cd215b0fafa8c0e (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/5d/4c/fa42ad68c525ddb8c40c3745cadaf7447d35d00f77b02bb14af2bd1650fc/pandas-1.0.2-cp38-cp38-macosx_10_9_x86_64.whl#sha256=852cac070c0928a2374854df312ba655533ff324bd0edc9b36d89adbc7b90263 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/6a/90/941d4fa7179f1c6c0cc9ab22825e0b5bd28b7ffa30fc54d74c3f1e6bac2d/pandas-1.0.2-cp38-cp38-manylinux1_x86_64.whl#sha256=4d4af03db48a9b292f700c4d5df52645e5a59046800594c46e53b0518ecf3ade (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/1e/fe/490aa92901f35ed504f0c64d467a6ed6fa06661844ed42b00204d3bd712d/pandas-1.0.2-cp38-cp38-win32.whl#sha256=9464f4ff95fd8f4c4a5245819e353052a0c501dd2fb027b294b005ed25f4d992 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/a9/ed/3da1039e412f7fb4a25f42951c6744a54ccccdd6df43470e356225d648aa/pandas-1.0.2-cp38-cp38-win_amd64.whl#sha256=137afc43ce7bd19b129dd0211177d03307080a728072e0a474de113ffec7f3c9 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/d2/08/61e6f33ef99999893f7840b368b06ddd6be11d1a2d5354667fed5f41c1e0/pandas-1.0.2.tar.gz#sha256=76334ba36aa42f93b6b47b79cbc32187d3a178a4ab1c3a478c8f4198bcd93a73 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.0.2
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/b3/1b/e918c9a762bd3de80d46348fda35d53d3e0276c4df9c04c13980242a4e7d/pandas-1.0.3-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=d234bcf669e8b4d6cbcd99e3ce7a8918414520aeb113e2a81aeb02d0a533d7f7 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/43/24/8213fc03d1862aec597b67fb72e9eb626fe545977f798bed84a112135fe6/pandas-1.0.3-cp36-cp36m-manylinux1_i686.whl#sha256=ca84a44cf727f211752e91eab2d1c6c1ab0f0540d5636a8382a3af428542826e (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/bb/71/8f53bdbcbc67c912b888b40def255767e475402e9df64050019149b1a943/pandas-1.0.3-cp36-cp36m-manylinux1_x86_64.whl#sha256=1fa4bae1a6784aa550a1c9e168422798104a85bf9c77a1063ea77ee6f8452e3a (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/bc/37/0c2fca3c43963fec72a793d2ccb615f740e26f04bc51a9ef9585c8869e7a/pandas-1.0.3-cp36-cp36m-win32.whl#sha256=863c3e4b7ae550749a0bb77fa22e601a36df9d2905afef34a6965bed092ba9e5 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/d2/81/a1514c993ad8261a2053f356c3ea9a6ad41871a09a8ef9cf46789e371a63/pandas-1.0.3-cp36-cp36m-win_amd64.whl#sha256=a210c91a02ec5ff05617a298ad6f137b9f6f5771bf31f2d6b6367d7f71486639 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/ad/1e/96282ff3db30befbbf8012ea69ecb0adc5e1064ef38e912bb8a3e4cfbccf/pandas-1.0.3-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=11c7cb654cd3a0e9c54d81761b5920cdc86b373510d829461d8f2ed6d5905266 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/a8/de/ff6539fc79498b43b333cbe2dae1f570ba7df1844457bbce6b1c1087c393/pandas-1.0.3-cp37-cp37m-manylinux1_i686.whl#sha256=6597df07ea361231e60c00692d8a8099b519ed741c04e65821e632bc9ccb924c (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/4a/6a/94b219b8ea0f2d580169e85ed1edc0163743f55aaeca8a44c2e8fc1e344e/pandas-1.0.3-cp37-cp37m-manylinux1_x86_64.whl#sha256=743bba36e99d4440403beb45a6f4f3a667c090c00394c176092b0b910666189b (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/57/2f/504c4d568178b97f67bd5056a2c26b6d422ab2e5dd142a1d290ac0e3f58b/pandas-1.0.3-cp37-cp37m-win32.whl#sha256=07c1b58936b80eafdfe694ce964ac21567b80a48d972879a359b3ebb2ea76835 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/69/69/c35fbbc9bec374c44e9c800e491e914a521dc3926fc6cee80d4821771295/pandas-1.0.3-cp37-cp37m-win_amd64.whl#sha256=12f492dd840e9db1688126216706aa2d1fcd3f4df68a195f9479272d50054645 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/e9/97/63740ed74af57e00f07fab6a9c6baa4a592d28d254c0f9877901ccb12d3d/pandas-1.0.3-cp38-cp38-macosx_10_9_x86_64.whl#sha256=0ebe327fb088df4d06145227a4aa0998e4f80a9e6aed4b61c1f303bdfdf7c722 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/ee/f0/bf41540b3a3a701de54afce7aa9e725257b2d6673f1603afe34e6debd826/pandas-1.0.3-cp38-cp38-manylinux1_i686.whl#sha256=858a0d890d957ae62338624e4aeaf1de436dba2c2c0772570a686eaca8b4fc85 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/f5/10/40688389f5e234bde06aa84e6f3ccf5beea6269f57e2bef67866d3b43268/pandas-1.0.3-cp38-cp38-manylinux1_x86_64.whl#sha256=387dc7b3c0424327fe3218f81e05fc27832772a5dffbed385013161be58df90b (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/07/12/5a087658337a230f4a77e3d548c847e81aa59b332cdd8ddf5c8d7f11c4a1/pandas-1.0.3-cp38-cp38-win32.whl#sha256=167a1315367cea6ec6a5e11e791d9604f8e03f95b57ad227409de35cf850c9c5 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/cd/c4/a4a53a538ed756a366a3c646472e04eaa54c26bf3065f9802f0b8c068e48/pandas-1.0.3-cp38-cp38-win_amd64.whl#sha256=1a7c56f1df8d5ad8571fa251b864231f26b47b59cbe41aa5c0983d17dbb7a8e4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/2f/79/f236ab1cfde94bac03d7b58f3f2ab0b1cc71d6a8bda3b25ce370a9fe4ab1/pandas-1.0.3.tar.gz#sha256=32f42e322fb903d0e189a4c10b75ba70d90958cc4f66a1781ed027f1a1d14586 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.0.3
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/4b/5d/98e804272715e9af20bf1bca5c7d26715d9e3bf47414b203c81a02dd1270/pandas-1.0.4-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=1f6fcf0404626ca0475715da045a878c7062ed39bc859afc4ccf0ba0a586a0aa (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/86/35/11f5eef2c0c67c4da75ad9b66e6020bdd9bf610035ddf7bdc7c92c2109d0/pandas-1.0.4-cp36-cp36m-manylinux1_i686.whl#sha256=bab51855f8b318ef39c2af2c11095f45a10b74cbab4e3c8199efcc5af314c648 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/8e/86/c14387d6813ebadb7bf61b9ad270ffff111c8b587e4d266e07de774e385e/pandas-1.0.4-cp36-cp36m-manylinux1_x86_64.whl#sha256=2a8b6c28607e3f3c344fe3e9b3cd76d2bf9f59bc8c0f2e582e3728b80e1786dc (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/22/21/7634c9a6f8838c531e90c4d0d2b4c04af97a12caa08570b5a5ee5be62d54/pandas-1.0.4-cp36-cp36m-win32.whl#sha256=034185bb615dc96d08fa13aacba8862949db19d5e7804d6ee242d086f07bcc46 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/24/f4/12386370b4aa85a6c7195a160dab5f760b9bff89374325ff5bb68e33531d/pandas-1.0.4-cp36-cp36m-win_amd64.whl#sha256=a647e44ba1b3344ebc5991c8aafeb7cca2b930010923657a273b41d86ae225c4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/6f/ec/b57a632a29078db0cecc09f3b2c185798f97b5d93589f8f4f5cbe336190b/pandas-1.0.4-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=698e26372dba93f3aeb09cd7da2bb6dd6ade248338cfe423792c07116297f8f4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/6c/e8/eba1b926a8606ffe56aea8c3b9e3482fd273a08af6624e88aa3b2d2e37fa/pandas-1.0.4-cp37-cp37m-manylinux1_i686.whl#sha256=2bc2ff52091a6ac481cc75d514f06227dc1b10887df1eb72d535475e7b825e31 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/a4/5f/1b6e0efab4bfb738478919d40b0e3e1a06e3d9996da45eb62a77e9a090d9/pandas-1.0.4-cp37-cp37m-manylinux1_x86_64.whl#sha256=519678882fd0587410ece91e3ff7f73ad6ded60f6fcb8aa7bcc85c1dc20ecac6 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/e4/e1/f6b6278901ecb23d1b7a191aff06f6e3ca5af3f5dfc4f9abf771e7fc9791/pandas-1.0.4-cp37-cp37m-win32.whl#sha256=51e0abe6e9f5096d246232b461649b0aa627f46de8f6344597ca908f2240cbaa (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/1d/eb/b4f68f54ad287d583c9c3b3c77f865615f832f092810f20d2b44498cd06c/pandas-1.0.4-cp37-cp37m-win_amd64.whl#sha256=415e4d52fcfd68c3d8f1851cef4d947399232741cc994c8f6aa5e6a9f2e4b1d8 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/98/8b/3a9366b51a3a7290ec08d2cfebfb35d1542560df83248a93e4d51b4b4b73/pandas-1.0.4-cp38-cp38-macosx_10_9_x86_64.whl#sha256=0c9b7f1933e3226cc16129cf2093338d63ace5c85db7c9588e3e1ac5c1937ad5 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/d2/b6/fb01097fc72b5a433fd7f2a4bead809db5ea6f3ccbb560d1c3613024e4de/pandas-1.0.4-cp38-cp38-manylinux1_i686.whl#sha256=982cda36d1773076a415ec62766b3c0a21cdbae84525135bdb8f460c489bb5dd (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/92/b8/9944b03116624c70fd4005c55d6120fe72d2ce2e8442c19996eb84e287a8/pandas-1.0.4-cp38-cp38-manylinux1_x86_64.whl#sha256=29b4cfee5df2bc885607b8f016e901e63df7ffc8f00209000471778f46cc6678 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/57/70/0292ee0aad71fd662f196502da0d608b7fa82fa32d19e412c10b63b4b415/pandas-1.0.4-cp38-cp38-win32.whl#sha256=1fc963ba33c299973e92d45466e576d11f28611f3549469aec4a35658ef9f4cc (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/6a/29/b5440a29f473bf2896bf7f8cbc0a6499961d54efdafe10ed64caabde8680/pandas-1.0.4-cp38-cp38-win_amd64.whl#sha256=83af85c8e539a7876d23b78433d90f6a0e8aa913e37320785cf3888c946ee874 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/53/87/6438c197fc70ca6b3056cfb60b3dfedca25bedb631bce1f72d6a10502d15/pandas-1.0.4.tar.gz#sha256=b35d625282baa7b51e82e52622c300a1ca9f786711b2af7cbe64f1e6831f4126 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.0.4
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/61/df/215832b1e04142bae4e80296c03cdd705b35663b13f27f336f5e28a3eee8/pandas-1.0.5-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=faa42a78d1350b02a7d2f0dbe3c80791cf785663d6997891549d0f86dc49125e (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/2d/37/2a43ad2ab3058c88b5500aef2297e74e5c5bb25c0ed93cf87281730c7619/pandas-1.0.5-cp36-cp36m-manylinux1_i686.whl#sha256=9c31d52f1a7dd2bb4681d9f62646c7aa554f19e8e9addc17e8b1b20011d7522d (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/c0/95/cb9820560a2713384ef49060b0087dfa2591c6db6f240215c2bce1f4211c/pandas-1.0.5-cp36-cp36m-manylinux1_x86_64.whl#sha256=8778a5cc5a8437a561e3276b85367412e10ae9fff07db1eed986e427d9a674f8 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/8c/bc/39c5c9c9d18e80111446605ac94eb685e15613f65731ca7a45c4e3a52505/pandas-1.0.5-cp36-cp36m-win32.whl#sha256=9871ef5ee17f388f1cb35f76dc6106d40cb8165c562d573470672f4cdefa59ef (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/2b/92/e91dd4fa699e23afbbb6063cfbbfc9574e98afb3c9f0623e6822a07afbd8/pandas-1.0.5-cp36-cp36m-win_amd64.whl#sha256=35b670b0abcfed7cad76f2834041dcf7ae47fd9b22b63622d67cdc933d79f453 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/5d/24/91ad2da4a1da2747595d2f47f858a131036f598fb495ec6346d08d8b8df6/pandas-1.0.5-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=c9410ce8a3dee77653bc0684cfa1535a7f9c291663bd7ad79e39f5ab58f67ab3 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/f0/9b/6a1cc063ca216c10e02478ae9a32b2b34c5cc2ec54b8fe94655eec2e1d1f/pandas-1.0.5-cp37-cp37m-manylinux1_i686.whl#sha256=02f1e8f71cd994ed7fcb9a35b6ddddeb4314822a0e09a9c5b2d278f8cb5d4096 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/af/f3/683bf2547a3eaeec15b39cef86f61e921b3b187f250fcd2b5c5fb4386369/pandas-1.0.5-cp37-cp37m-manylinux1_x86_64.whl#sha256=b3c4f93fcb6e97d993bf87cdd917883b7dab7d20c627699f360a8fb49e9e0b91 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/03/27/80b85a8e5e426269bf8deb8c40d50111bc0e6b7700532b7c6f9599ef74a1/pandas-1.0.5-cp37-cp37m-win32.whl#sha256=5759edf0b686b6f25a5d4a447ea588983a33afc8a0081a0954184a4a87fd0dd7 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/da/90/44d5e0a5d42506d2e31544c8f44c54be88c2128f6fc482c01de29ecfb365/pandas-1.0.5-cp37-cp37m-win_amd64.whl#sha256=ab8173a8efe5418bbe50e43f321994ac6673afc5c7c4839014cf6401bbdd0705 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/61/31/efa78fda20edb4805a837d2fc70af6261d408e569787c1a5c4c4a2aa8932/pandas-1.0.5-cp38-cp38-macosx_10_9_x86_64.whl#sha256=13f75fb18486759da3ff40f5345d9dd20e7d78f2a39c5884d013456cec9876f0 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/4b/a7/ec8e8ae0048c8675c21d224e04b8af448d3a708f0c3b73d2831e91e8de04/pandas-1.0.5-cp38-cp38-manylinux1_i686.whl#sha256=5a7cf6044467c1356b2b49ef69e50bf4d231e773c3ca0558807cdba56b76820b (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/de/da/24e8260222f3f100cffe638189d3dffdc9ce956e9cafe60371bef258a6ce/pandas-1.0.5-cp38-cp38-manylinux1_x86_64.whl#sha256=ae961f1f0e270f1e4e2273f6a539b2ea33248e0e3a11ffb479d757918a5e03a9 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/0d/3b/c306fc4c669f9208ba5a62d29a71fcb5df3be80a914da9e7b30ad682589f/pandas-1.0.5-cp38-cp38-win32.whl#sha256=f69e0f7b7c09f1f612b1f8f59e2df72faa8a6b41c5a436dde5b615aaf948f107 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/a9/e2/6d1bc05a9eb81952e628037dd72d76aa826683d3f646898dd0af5d9d31f8/pandas-1.0.5-cp38-cp38-win_amd64.whl#sha256=4c73f373b0800eb3062ffd13d4a7a2a6d522792fa6eb204d67a4fad0a40f03dc (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/31/29/ede692aa6547dfc1f07a4d69e8411b35225218bcfbe9787e78b67a35d103/pandas-1.0.5.tar.gz#sha256=69c5d920a0b2a9838e677f78f4dde506b95ea8e4d30da25859db6469ded84fa8 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.0.5
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/42/fc/bd256b7e088df28fec65e75041ab8d8a0897d44b7a861b4e10b7b6bb13cb/pandas-1.1.0rc0-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=8dd0d1217eb4466f3953e2cc66102c17c4fe1ad3ec4eee7e270cfd156ae9c9fb (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/14/dd/def8ea6b370afb6b38dce8aefc1d8b19da85e89311f111343fdfe02b2f8c/pandas-1.1.0rc0-cp36-cp36m-manylinux1_i686.whl#sha256=bc33490bb9ccc21afd0c6a5660bbdaf7096c100d1ab3aceca73ad6b233124fb6 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/f2/0a/4c863b61ec5feb2e2a2475e3261841e71667ad80df353d766682f32060e1/pandas-1.1.0rc0-cp36-cp36m-manylinux1_x86_64.whl#sha256=365323a94de00324c262c344abdb714b08c16f05496c79d5ad37de942ed4b862 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/6e/72/6a98ba85389abe1efff4f33cca15d2015902475373e63b59d23cbcd7e0f2/pandas-1.1.0rc0-cp36-cp36m-win32.whl#sha256=e9d14bdb16ad6f9006c9d1ea9af9e9dd144de456d24b28c21fc219a42c9684d5 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/48/ac/e96acc9dedec7725c0106b8340bb926406b000f923352978c263bc0f3811/pandas-1.1.0rc0-cp36-cp36m-win_amd64.whl#sha256=63ea1de1b0577d446169c534dfec97c812ee4442e1268f54c4f01e6c6d1c7513 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/1b/e5/3284eed7382b16cabadf23d9daaf16f53a6db25da8e9e0a62d7826f9f0f4/pandas-1.1.0rc0-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=9352a0519a1109d9809cc8f524f57405ff9b1bc14fd07a86703852bc6996a310 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/57/ac/ef275793fb00b3926f6a307a9c6266df61f89ff3279f83415ea3379ff30a/pandas-1.1.0rc0-cp37-cp37m-manylinux1_i686.whl#sha256=ffcaf569c0caff0f9cc2dcf533fdafd062029d4b48e46841cbc418eb2433a7b3 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/fd/41/e58d4800439d6464a82fd70a8d646bac1a9e4c81f72dacc384aa79c73fef/pandas-1.1.0rc0-cp37-cp37m-manylinux1_x86_64.whl#sha256=3db6385efa2739ad41fce265ba2ab15dea7a77579ad5c47b851ba1830b161135 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/d6/46/8f2244e31a8cfe72d3836779f8aea0dc639239de68eadd2bc3121f95e1d5/pandas-1.1.0rc0-cp37-cp37m-win32.whl#sha256=991b9b847b5f850271b19975fad8ad412d92ffe29dfae48ce141ec9510f93d36 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/3f/99/0249d72d2d919b5488acd859a8e194523887156b35175fdff7d4492594c7/pandas-1.1.0rc0-cp37-cp37m-win_amd64.whl#sha256=53a6039f96a60afddea1368dbf49f6c8d46fa009dadbd5edd059f8cb8ddbbe47 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/63/44/c676c968338cf9c2f6eec999fe2a9832aca8b24fb7a1300d1b4ed80bd10b/pandas-1.1.0rc0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=cc60b03e9d5f42026b5055901fd2e098938b06a697de4bcc4cd2622ca2f82172 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/c5/c6/911240b950692a6e9f01654340cdf174f0b572c55927b125751ba5548a63/pandas-1.1.0rc0-cp38-cp38-manylinux1_i686.whl#sha256=a99300fc95f1614f012582010c7c353dbc213bbf4412df0125adfdb5a8bf1753 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/2b/72/4231c8ab29323314c70191bac6d5ede9f785ef892839099c9b423cb2ee68/pandas-1.1.0rc0-cp38-cp38-manylinux1_x86_64.whl#sha256=a4046d3fea187d7028e2d290bf0ef0486be3ee5cb28db986d2f00454baf3d24a (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/52/73/a1768ef3992ecc730949863c88073670a9f322e5c3af93289ce669a77f44/pandas-1.1.0rc0-cp38-cp38-win32.whl#sha256=be9f60701d4e41282f51389dbce06e755f8db39d3f22274a9d043cd59995bd20 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/73/25/5b189c69d46c01e35e4357e47a14d75696bbabb8334a736e25188bad8d39/pandas-1.1.0rc0-cp38-cp38-win_amd64.whl#sha256=2b89a916b533849a84a9625b5ed74ec0df8a986787468dc4c950a6c790c156f4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/a6/a8/c6e7789abd79c13153829f71ec74b3a37b082b4f190e1bc1b9bf014de25b/pandas-1.1.0rc0.tar.gz#sha256=87bec0cca6e2435dc96bf063cfa332cd11825b48d6199974916acaff5d80ea80 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.1.0rc0
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/21/1f/b49b13b53088af6cb03fb08bb7ece8f484f8057114ecf132d96923cda2c0/pandas-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=47a03bfef80d6812c91ed6fae43f04f2fa80a4e1b82b35aa4d9002e39529e0b8 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/92/0d/a211f7fab2aa989d7c5e311bd10b231c4845e95d4d9d3c248b30fb178f8c/pandas-1.1.0-cp36-cp36m-manylinux1_i686.whl#sha256=0210f8fe19c2667a3817adb6de2c4fd92b1b78e1975ca60c0efa908e0985cbdb (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/a7/f7/2adca20a7fa71b6a32f823bbd83992adeceab1d8bf72992bb7a55c69c19a/pandas-1.1.0-cp36-cp36m-manylinux1_x86_64.whl#sha256=35db623487f00d9392d8af44a24516d6cb9f274afaf73cfcfe180b9c54e007d2 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/58/2f/add5a0c82addeb07c3afeeb5fe5879aef1e031a54861a2108ce36739535f/pandas-1.1.0-cp36-cp36m-win32.whl#sha256=4d1a806252001c5db7caecbe1a26e49a6c23421d85a700960f6ba093112f54a1 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/6e/c5/333763309600ff7e209891ad935183fc95c4d1085223ded25e4d2b396851/pandas-1.1.0-cp36-cp36m-win_amd64.whl#sha256=9f61cca5262840ff46ef857d4f5f65679b82188709d0e5e086a9123791f721c8 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/2f/30/5ab95bee54e0221160af169bdb36c2eb5c65e0549a4c143d54aa515e2f27/pandas-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=182a5aeae319df391c3df4740bb17d5300dcd78034b17732c12e62e6dd79e4a4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/17/0d/c94db6417befb2d345866950c7186b1ad20755677e704234fab42216c3ce/pandas-1.1.0-cp37-cp37m-manylinux1_i686.whl#sha256=40ec0a7f611a3d00d3c666c4cceb9aa3f5bf9fbd81392948a93663064f527203 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/94/b1/f77f49cc7cc538b247f30c2ae7e3a50f29e44f0b1af32ff4869d7de3c762/pandas-1.1.0-cp37-cp37m-manylinux1_x86_64.whl#sha256=16504f915f1ae424052f1e9b7cd2d01786f098fbb00fa4e0f69d42b22952d798 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/2b/c7/c873dfe07c7db05b0b07fc35c8cc6b51750ef9964f6b2b573561f3de97e6/pandas-1.1.0-cp37-cp37m-win32.whl#sha256=fc714895b6de6803ac9f661abb316853d0cd657f5d23985222255ad76ccedc25 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/cb/69/d2a9673f2fbb96f072c28f3bf1f3a249dc1f28395fb7dce98dfd0fe25885/pandas-1.1.0-cp37-cp37m-win_amd64.whl#sha256=a15835c8409d5edc50b4af93be3377b5dd3eb53517e7f785060df1f06f6da0e2 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/89/db/11970e5a1d51717a918f0b046f81a9b1c7fc4e84f152776aa82fbc350480/pandas-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=0bc440493cf9dc5b36d5d46bbd5508f6547ba68b02a28234cd8e81fdce42744d (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/e7/6b/b34f892a8c4303429725a0f96f03177836c729f90c5a5ef1d7547a07b1e0/pandas-1.1.0-cp38-cp38-manylinux1_i686.whl#sha256=4b21d46728f8a6be537716035b445e7ef3a75dbd30bd31aa1b251323219d853e (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/5d/9f/f4c2a0f6f03d3ba95043c616e477926776ed3de7963a80edede7599630de/pandas-1.1.0-cp38-cp38-manylinux1_x86_64.whl#sha256=0227e3a6e3a22c0e283a5041f1e3064d78fbde811217668bb966ed05386d8a7e (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/f9/fc/7fb999022859fa19712dd975c50cbbb4f9662b4772d30c9dffb41e7d3f02/pandas-1.1.0-cp38-cp38-win32.whl#sha256=ed60848caadeacecefd0b1de81b91beff23960032cded0ac1449242b506a3b3f (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/f1/e1/56bf2e1b92ce1361169aff7ba0316d211339cc8e2737f5f2e7a5930c9574/pandas-1.1.0-cp38-cp38-win_amd64.whl#sha256=60e20a4ab4d4fec253557d0fc9a4e4095c37b664f78c72af24860c8adcd07088 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/6f/29/32ff85413724ffa7cc8d52373f93c2ef1cb197ffd0c7b1b10d36452dd0ca/pandas-1.1.0.tar.gz#sha256=b39508562ad0bb3f384b0db24da7d68a2608b9ddc85b1d931ccaaa92d5e45273 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.1.0
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/cd/ae/8ceee21a451ba3d3021a12c37bc330f614879d4d558cdb5bf2c7662c387b/pandas-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=8c9ec12c480c4d915e23ee9c8a2d8eba8509986f35f307771045c1294a2e5b73 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/a8/09/2d0a1a76d8a184dbddeca15e893f9780f03cf65692abdc231d4f0a5d3529/pandas-1.1.1-cp36-cp36m-manylinux1_i686.whl#sha256=e4b6c98f45695799990da328e6fd7d6187be32752ed64c2f22326ad66762d179 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/a1/c6/9ac4ae44c24c787a1738e5fb34dd987ada6533de5905a041aa6d5bea4553/pandas-1.1.1-cp36-cp36m-manylinux1_x86_64.whl#sha256=16ae070c47474008769fc443ac765ffd88c3506b4a82966e7a605592978896f9 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/6f/f2/2a2a1aa39822e66ab57a6aab397a807398971ea023cfc680e82c25b942f1/pandas-1.1.1-cp36-cp36m-win32.whl#sha256=88930c74f69e97b17703600233c0eaf1f4f4dd10c14633d522724c5c1b963ec4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/73/0f/8757a2da3538a5f5c2bb6764056f08940146bb70ab40dff836aa46e8d7bf/pandas-1.1.1-cp36-cp36m-win_amd64.whl#sha256=fe6f1623376b616e03d51f0dd95afd862cf9a33c18cf55ce0ed4bbe1c4444391 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/b5/71/870c653fe041f16587c8a1a3eb840cf50312a387326fea7374f6948520b7/pandas-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=a81c4bf9c59010aa3efddbb6b9fc84a9b76dc0b4da2c2c2d50f06a9ef6ac0004 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/44/a8/570c50885dab7d5803b2c35df4ed538d401c13df6b24280cd6c306c817f6/pandas-1.1.1-cp37-cp37m-manylinux1_i686.whl#sha256=1acc2bd7fc95e5408a4456897c2c2a1ae7c6acefe108d90479ab6d98d34fcc3d (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/61/ed/10112535645ad7afd26c3b9defd20a32d9e42340b19c4f73ff26ccad06ee/pandas-1.1.1-cp37-cp37m-manylinux1_x86_64.whl#sha256=84c101d0f7bbf0d9f1be9a2f29f6fcc12415442558d067164e50a56edfb732b4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/86/c8/80688124ef7ca3f5f111409ff72f80d3c2234658801a2063a82026fa9475/pandas-1.1.1-cp37-cp37m-win32.whl#sha256=391db82ebeb886143b96b9c6c6166686c9a272d00020e4e39ad63b792542d9e2 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/2e/fd/ecf199241d4cb0058a64e25a147c37b477ef660c8e7059307056e2ae4bb5/pandas-1.1.1-cp37-cp37m-win_amd64.whl#sha256=0366150fe8ee37ef89a45d3093e05026b5f895e42bbce3902ce3b6427f1b8471 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/49/65/b12e0454b148421db3a013767ecb3d65a5d777d76cc169b6242d1216e563/pandas-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl#sha256=d9644ac996149b2a51325d48d77e25c911e01aa6d39dc1b64be679cd71f683ec (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/57/a0/3b6862483f96fce9b883410f5bb4ef49d30bcd865058f3fdc78d9601d530/pandas-1.1.1-cp38-cp38-manylinux1_i686.whl#sha256=41675323d4fcdd15abde068607cad150dfe17f7d32290ee128e5fea98442bd09 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/78/f8/b77a2603a4aa184412576127c2846f7a69b42e6c1596d791c817643880d0/pandas-1.1.1-cp38-cp38-manylinux1_x86_64.whl#sha256=0246c67cbaaaac8d25fed8d4cf2d8897bd858f0e540e8528a75281cee9ac516d (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/de/90/8c212186c80ac2bb9325188b2f611cbdb9a6c1150980d285453d3ba483d2/pandas-1.1.1-cp38-cp38-win32.whl#sha256=01b1e536eb960822c5e6b58357cad8c4b492a336f4a5630bf0b598566462a578 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/0d/0a/741b11794613a512c284cd7ae959b0c22b708d3bfe4a167cbdacd1997ca6/pandas-1.1.1-cp38-cp38-win_amd64.whl#sha256=57c5f6be49259cde8e6f71c2bf240a26b071569cabc04c751358495d09419e56 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/b1/1f/afb5cad013e8888053f6524849cc3df4bb83dfcab59485f10bf50016d4f8/pandas-1.1.1.tar.gz#sha256=53328284a7bb046e2e885fd1b8c078bd896d7fc4575b915d4936f54984a2ba67 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.1.1
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/a3/b9/b6e214ef4d4cc4eca5918011f5237ee646792f23b4acce325f2d60b10373/pandas-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=eb0ac2fd04428f18b547716f70c699a7cc9c65a6947ed8c7e688d96eb91e3db8 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/10/9e/38c9ed0ebb1864d3a36391653a640c4d92b56ac6fdae4efab978b55110f3/pandas-1.1.2-cp36-cp36m-manylinux1_i686.whl#sha256=02ec9f5f0b7df7227931a884569ef0b6d32d76789c84bcac1a719dafd1f912e8 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/1c/11/e1f53db0614f2721027aab297c8afd2eaf58d33d566441a97ea454541c5e/pandas-1.1.2-cp36-cp36m-manylinux1_x86_64.whl#sha256=1edf6c254d2d138188e9987159978ee70e23362fe9197f3f100844a197f7e1e4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/85/cf/dbee2959ece97cf98c8874db541a19d807eed0a7d76da32a25c4c45623e8/pandas-1.1.2-cp36-cp36m-win32.whl#sha256=b821f239514a9ce46dd1cd6c9298a03ed58d0235d414ea264aacc1b14916bbe4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/38/9c/1735f986d8e416f529469d3f8d63031f8a479873400fec8c3d751bd6b5bf/pandas-1.1.2-cp36-cp36m-win_amd64.whl#sha256=ab6ea0f3116f408a8a59cd50158bfd19d2a024f4e221f14ab1bcd2da4f0c6fdf (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/4b/11/af80c1f40bd17af25945ad5f27d57e4514db53b8370d2dc54ff3d23c35c4/pandas-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=474fa53e3b2f3a543cbca81f7457bd1f44e7eb1be7171067636307e21b624e9c (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/e9/9e/4f3de0ad05b2ececa72c685f2d9b810a580ba0747a45e23ad586811d16ad/pandas-1.1.2-cp37-cp37m-manylinux1_i686.whl#sha256=9e135ce9929cd0f0ba24f0545936af17ba935f844d4c3a2b979354a73c9440e0 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/74/69/18b96b520519818e00b04dd08d7cbc5e764f1465f5a280cf96173f34c54e/pandas-1.1.2-cp37-cp37m-manylinux1_x86_64.whl#sha256=188cdfbf8399bc144fa95040536b5ce3429d2eda6c9c8b238c987af7df9f128c (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/7d/fe/efa8dd87d578279a54146816cceb167ab9fa4129869aeda85d4ebeef5d51/pandas-1.1.2-cp37-cp37m-win32.whl#sha256=08783a33989a6747317766b75be30a594a9764b9f145bb4bcc06e337930d9807 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/c5/16/07da3435a161ae411eef63d6c5edcf9fd11a8a11e94f60d259693b7e0804/pandas-1.1.2-cp37-cp37m-win_amd64.whl#sha256=f7008ec22b92d771b145150978d930a28fab8da3a10131b01bbf39574acdad0b (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/f0/8e/876fbd98f712dcda93c7b6826f5ca06b3d7b1aff343e9b0b2460c463c591/pandas-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl#sha256=59df9f0276aa4854d8bff28c5e5aeb74d9c6bb4d9f55d272b7124a7df40e47d0 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/7d/1d/9e1cef2d8521396b1bafe46c5f6360d07d722a484c81e0251b1fb5b44ec7/pandas-1.1.2-cp38-cp38-manylinux1_i686.whl#sha256=eeb64c5b3d4f2ea072ca8afdeb2b946cd681a863382ca79734f1b520b8d2fa26 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/73/d8/2385fbe41282a38869d18fbc0d8a41f8fda6af5b300125d3bd262db7f782/pandas-1.1.2-cp38-cp38-manylinux1_x86_64.whl#sha256=c9235b37489168ed6b173551c816b50aa89f03c24a8549a8b4d47d8dc79bfb1e (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/9f/02/8d7980887e662836ad1f1a72a24347256c0d1c4b5a958386c45eb5544815/pandas-1.1.2-cp38-cp38-win32.whl#sha256=0936991228241db937e87f82ec552a33888dd04a2e0d5a2fa3c689f92fab09e0 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/06/c7/689081ec5b3fa3d19c973a13846fd844d121f952829e9c6de61d651115a0/pandas-1.1.2-cp38-cp38-win_amd64.whl#sha256=026d764d0b86ee53183aa4c0b90774b6146123eeada4e24946d7d24290777be1 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/64/f1/8fdbd74edfc31625d597717be8c155c6226fc72a7c954c52583ab81a8614/pandas-1.1.2.tar.gz#sha256=b64ffd87a2cfd31b40acd4b92cb72ea9a52a48165aec4c140e78fd69c45d1444 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.1.2
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/cc/bb/4bb32f4373ffbc3d6cfc19fb8c412855f567d30689ed69acb5eb467ed25a/pandas-1.1.3-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=882012763668af54b48f1412bab95c5cc0a7ccce5a2a8221cfc3839a6e3394ef (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/ff/4e/4c5c11f5d849edc492736728d594b72dd729d8fb2c87aaf17ebf7f8f2439/pandas-1.1.3-cp36-cp36m-manylinux1_i686.whl#sha256=206d7c3e5356dcadf082e64dc25c24bc8541718045826074f96346e9d6d05a20 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/a2/21/e10d65222d19a2537e3eb0df306686a9eabd08b3c98dd120e43720bf802d/pandas-1.1.3-cp36-cp36m-manylinux1_x86_64.whl#sha256=ca31ac8578d48da354cf66a473d4d5ff99277ca71d321dc7ea4e6fad3c6bb0fd (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux2014_aarch64: https://files.pythonhosted.org/packages/65/19/6a19b9df4e6c679511d8cd8417f8c14ef283b3bab003f0f074c89612469a/pandas-1.1.3-cp36-cp36m-manylinux2014_aarch64.whl#sha256=fd6f05b6101d0e76f3e5c26a47be5be7be96ed84ef3981dc1852e76898e73594 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/8a/3e/d8268352f4da4dc52c04fd92190a90276738f888327091de772384bd7543/pandas-1.1.3-cp36-cp36m-win32.whl#sha256=ca71a5aa9eeb3ef5b31feca7d9b6369d6b3d0b2e9c85d7a89abe3ecb013f1e86 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/f3/9a/8060d225f62bcd9a90e6feaf054d432ad70a36a2d0823f1f2d3f250c134f/pandas-1.1.3-cp36-cp36m-win_amd64.whl#sha256=54f5f564058b0280d588c3758abde82e280702c440db5faf0c686b80336096f9 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/5b/c8/8a75e942e7b2c433f0b9641d6e693afa11551c0465dbbd04cbdc50faac30/pandas-1.1.3-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=3a038cd5da602b955d335aa80cbaa0e5774f68501ff47b9c21509906981478da (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/e8/c7/17cb07f9a1e5518cbe913f543a233be3745cb4aedde581a7ba913f1ef8e3/pandas-1.1.3-cp37-cp37m-manylinux1_i686.whl#sha256=24f61f40febe47edac271eda45d683e42838b7db2bd0f82574d9800259d2b182 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/25/47/22fc373440e144e2111363adaa07abb09ec1f03fbc071b6d9fc0bbf65f68/pandas-1.1.3-cp37-cp37m-manylinux1_x86_64.whl#sha256=427be9938b2f79ab298de84f87693914cda238a27cf10580da96caf3dff64115 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux2014_aarch64: https://files.pythonhosted.org/packages/e4/60/f34ad85688215543186638dfb91129f600142fd3e61a2f8d58030eb501ef/pandas-1.1.3-cp37-cp37m-manylinux2014_aarch64.whl#sha256=5a8a84b75ca3a29bb4263b35d5ed9fcaae2b062f014feed8c5daa897339c7d85 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/f6/d5/2fc6f830ccf448aebce88f3d7e3884362e175138e19b65c13743d7dc29ef/pandas-1.1.3-cp37-cp37m-win32.whl#sha256=c22e40f1b4d162ca18eb6b2c572e63eef220dbc9cc3de0241cefb77972621bb7 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/8d/6f/b1d18ef1ae6d8d8e43ce6e69c4960a0a147c7b852c763d4d2bee9499889f/pandas-1.1.3-cp37-cp37m-win_amd64.whl#sha256=920d30fdff65a079f071db635d282b4f583c2b26f2b58d5dca218aac7c59974d (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/30/09/3c2ee77531dc30d4265d1f148d08d283de2d57fdd00745a9b367137d54ac/pandas-1.1.3-cp38-cp38-macosx_10_9_x86_64.whl#sha256=d6b1f9d506dc23da2915bcae5c5968990049c9cec44108bd9855d2c7c89d91dc (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/5b/5f/ffc1308db2e245a55e0770ae4a5dfdc7197d51206efed00fb422e8ee6149/pandas-1.1.3-cp38-cp38-manylinux1_i686.whl#sha256=b11b496c317dbe007898de699fd59eaf687d0fe8c1b7dad109db6010155d28ae (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/64/0e/97fa348981b2ccebd39569200c91d587703329ea21508c30bb35110e404c/pandas-1.1.3-cp38-cp38-manylinux1_x86_64.whl#sha256=d89dbc58aec1544722a8d5046f880b597c497ef8a82c5fe695b4b2effafac5ec (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux2014_aarch64: https://files.pythonhosted.org/packages/b9/6e/fece9ef5af93da52129ab726023688d5b0235a31e78acff7d24dc8992557/pandas-1.1.3-cp38-cp38-manylinux2014_aarch64.whl#sha256=df43ea0e9fd9f9672b0de9cac26d01255ad50481994bf3cb4687c21eec2d7bbc (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/70/be/ffdb11781fc7dbe4d36214660003aebacad17bb353d45a5895158ce3b461/pandas-1.1.3-cp38-cp38-win32.whl#sha256=a605054fbca71ed1d08bb2aef6f73c84a579bbac956bfe8f9718d5e84cb41248 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/dd/15/11efbb7b702abb3e5fe54385962bc1bab429ddfd1801c092b9960ea8e476/pandas-1.1.3-cp38-cp38-win_amd64.whl#sha256=84a4ffe668df357e31f98c829536e3a7142c3036c82f996e639f644c5d32eda1 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/6f/ac/a70576813ebfae244cd571b52293c34427e517718f304d9e48119f7c8fc1/pandas-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl#sha256=147162568b1242355290341baf281926cfac66ada07e634f3fc521ac967e4653 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/f9/3c/6e905238d97b5f1fd3083454c28d4ae8b234f89b9e7b32e1f23878a6bff0/pandas-1.1.3-cp39-cp39-manylinux1_i686.whl#sha256=2999adc6736f8cb4c69d65a6e2b25a11bcb395da5b048342b8e4d6fe055e57ae (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/21/b6/3a61175ae2b1cac872ecfa271f7887d4f33d0f3cdfee8cf3dcfdfb8c3a62/pandas-1.1.3-cp39-cp39-manylinux1_x86_64.whl#sha256=f4cb8252ae71f093f4a6b847adf0bc9330f109c48f08363c2071f189f1c89c87 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/e4/b1/55d510b4ff61f831407ea8a267f4b8d789432e9a9dc40512bc1acf07c50d/pandas-1.1.3-cp39-cp39-win32.whl#sha256=b026e913d88fad3a74eea8ed5a5f98e8823080ea02f8d9bb0ec19e92552daad6 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/27/c4/996c55d8cf5a5b531eb6dd424a6c48c7b6dc8bf328a669a0363167be2974/pandas-1.1.3-cp39-cp39-win_amd64.whl#sha256=11c284769f41e95f7d16a327eb555989c5f29418aad075fa80c97ef3aa8fb885 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/1b/e5/552ba65835ab43e12b299458fea94ee23886125b8b8aabc91edb03f2ba65/pandas-1.1.3.tar.gz#sha256=babbeda2f83b0686c9ad38d93b10516e68cdcd5771007eb80a763e98aaf44613 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.1.3
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/3f/a5/2bfd885118ebec3e3efdfe3527189b1857285006dca31dc408edbacfa226/pandas-1.1.4-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=e2b8557fe6d0a18db4d61c028c6af61bfed44ef90e419ed6fadbdc079eba141e (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/be/e1/0788d740faf63d16096954b4aa3d06458c9a5f819c902f562af887c530c0/pandas-1.1.4-cp36-cp36m-manylinux1_i686.whl#sha256=3aa8e10768c730cc1b610aca688f588831fa70b65a26cb549fbb9f35049a05e0 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/4d/51/bafcff417cd857bc6684336320863b5e5af280530213ef8f534b6042cfe6/pandas-1.1.4-cp36-cp36m-manylinux1_x86_64.whl#sha256=185cf8c8f38b169dbf7001e1a88c511f653fbb9dfa3e048f5e19c38049e991dc (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux2014_aarch64: https://files.pythonhosted.org/packages/17/b4/7902c00db45c793663b2f5ceb1873c555b20c5c2f15680208a028afa311a/pandas-1.1.4-cp36-cp36m-manylinux2014_aarch64.whl#sha256=0d9a38a59242a2f6298fff45d09768b78b6eb0c52af5919ea9e45965d7ba56d9 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/b9/f6/5b640c2c70c9b321cca65aa75e15183180d4f6832c28b6313f595a91bdf5/pandas-1.1.4-cp36-cp36m-win32.whl#sha256=8b4c2055ebd6e497e5ecc06efa5b8aa76f59d15233356eb10dad22a03b757805 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/d7/eb/7dec8af25f078a86aea778fdc6e77f90e442a1fcc975817e15ee3132f5ca/pandas-1.1.4-cp36-cp36m-win_amd64.whl#sha256=5dac3aeaac5feb1016e94bde851eb2012d1733a222b8afa788202b836c97dad5 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/67/90/a95cef3d819173b7dfdb8bf52b99409584a22bc73179801f6fd946e38f5b/pandas-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=6d2b5b58e7df46b2c010ec78d7fb9ab20abf1d306d0614d3432e7478993fbdb0 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/4f/fc/a0aa8b03c4d853df547faef2f73ab8bcac7d53c61051426f8a4670d39975/pandas-1.1.4-cp37-cp37m-manylinux1_i686.whl#sha256=c681e8fcc47a767bf868341d8f0d76923733cbdcabd6ec3a3560695c69f14a1e (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/bf/4c/cb7da76f3a5e077e545f9cf8575b8f488a4e8ad60490838f89c5cdd5bb57/pandas-1.1.4-cp37-cp37m-manylinux1_x86_64.whl#sha256=c5a3597880a7a29a31ebd39b73b2c824316ae63a05c3c8a5ce2aea3fc68afe35 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux2014_aarch64: https://files.pythonhosted.org/packages/d2/64/4c7c4a554193dcd464511c331380088a88f86056470d136657743e919ed0/pandas-1.1.4-cp37-cp37m-manylinux2014_aarch64.whl#sha256=6613c7815ee0b20222178ad32ec144061cb07e6a746970c9160af1ebe3ad43b4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/f4/32/e3d08b3f2d7ea5ec1eda9667bb6d59ba906d7fa45041065d7feba1786be6/pandas-1.1.4-cp37-cp37m-win32.whl#sha256=43cea38cbcadb900829858884f49745eb1f42f92609d368cabcc674b03e90efc (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/9c/4d/4938a43970778cffecc10a82824a166f08d687d935afe7d04484cd489940/pandas-1.1.4-cp37-cp37m-win_amd64.whl#sha256=5378f58172bd63d8c16dd5d008d7dcdd55bf803fcdbe7da2dcb65dbbf322f05b (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/18/f0/905058bd437423591491092d7e42244babd0c19861e6b1abdadb199a1321/pandas-1.1.4-cp38-cp38-macosx_10_9_x86_64.whl#sha256=a7d2547b601ecc9a53fd41561de49a43d2231728ad65c7713d6b616cd02ddbed (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/13/33/75434c3782b4f46e455b71e9db32577364f4d37dee4b2ed87609fdaf3a4b/pandas-1.1.4-cp38-cp38-manylinux1_i686.whl#sha256=41746d520f2b50409dffdba29a15c42caa7babae15616bcf80800d8cfcae3d3e (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/05/55/680d41e54222fa5454ac184a237a23329857f98ab2ccf58710d5f662b914/pandas-1.1.4-cp38-cp38-manylinux1_x86_64.whl#sha256=a15653480e5b92ee376f8458197a58cca89a6e95d12cccb4c2d933df5cecc63f (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux2014_aarch64: https://files.pythonhosted.org/packages/f4/7d/115d9bfdf1de7dbc51230d80de09e0af4d57af8a0e15418346787d1ea7c4/pandas-1.1.4-cp38-cp38-manylinux2014_aarch64.whl#sha256=5fdb2a61e477ce58d3f1fdf2470ee142d9f0dde4969032edaf0b8f1a9dafeaa2 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/cd/ad/9248c5dac143c452f1f8a21e95a2ca0cf5c81a0124066fc588673c52d1bb/pandas-1.1.4-cp38-cp38-win32.whl#sha256=8a5d7e57b9df2c0a9a202840b2881bb1f7a648eba12dd2d919ac07a33a36a97f (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/07/c5/b331415af20d49098250d923440e710e31e42d84ca0d071d5f7f29e95b2c/pandas-1.1.4-cp38-cp38-win_amd64.whl#sha256=54404abb1cd3f89d01f1fb5350607815326790efb4789be60508f458cdd5ccbf (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/b8/53/09800b6aab4c31fb33dc167ad73ec2cde67c2f3c371a3a1d0c590b07a9f3/pandas-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl#sha256=112c5ba0f9ea0f60b2cc38c25f87ca1d5ca10f71efbee8e0f1bee9cf584ed5d5 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/d2/c5/e1c2871472b9ec52930118f7aeff5d1a76de63f3070471818093177529c3/pandas-1.1.4-cp39-cp39-manylinux1_i686.whl#sha256=cf135a08f306ebbcfea6da8bf775217613917be23e5074c69215b91e180caab4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/5a/af/0a7e1ed95066ba8bcd65c0dde57cacbfc025f3f4a69878951df754787ec2/pandas-1.1.4-cp39-cp39-manylinux1_x86_64.whl#sha256=b1f8111635700de7ac350b639e7e452b06fc541a328cf6193cf8fc638804bab8 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/0c/8d/d2d074b6664dc6ead12b051fa5eda9e663253ed427ba91b89098b96dc698/pandas-1.1.4-cp39-cp39-win32.whl#sha256=09e0503758ad61afe81c9069505f8cb8c1e36ea8cc1e6826a95823ef5b327daf (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/c5/bd/c52cd94e7d10ca08238a29d65e727683ff063461aa56e6ee313dad1360df/pandas-1.1.4-cp39-cp39-win_amd64.whl#sha256=0a11a6290ef3667575cbd4785a1b62d658c25a2fd70a5adedba32e156a8f1773 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/09/39/fb93ed98962d032963418cd1ea5927b9e11c4c80cb1e0b45dea769d8f9a5/pandas-1.1.4.tar.gz#sha256=a979d0404b135c63954dea79e6246c45dd45371a88631cdbb4877d844e6de3b6 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.1.4
  Skipping link: none of the wheel's tags match: cp36-cp36m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/c8/df/7b92d69566df6daf65b7db7c7112130def6cfbdc254c78d8addb80402d95/pandas-1.1.5-cp36-cp36m-macosx_10_9_x86_64.whl#sha256=bf23a3b54d128b50f4f9d4675b3c1857a688cc6731a32f931837d72effb2698d (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_i686: https://files.pythonhosted.org/packages/50/34/ac705c69f778bf96343a33633b009927669833ca58b86c26c64af8578cd9/pandas-1.1.5-cp36-cp36m-manylinux1_i686.whl#sha256=5a780260afc88268a9d3ac3511d8f494fdcf637eece62fb9eb656a63d53eb7ca (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux1_x86_64: https://files.pythonhosted.org/packages/c3/e2/00cacecafbab071c787019f00ad84ca3185952f6bb9bca9550ed83870d4d/pandas-1.1.5-cp36-cp36m-manylinux1_x86_64.whl#sha256=b61080750d19a0122469ab59b087380721d6b72a4e7d962e4d7e63e0c4504814 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-manylinux2014_aarch64: https://files.pythonhosted.org/packages/ff/87/c57d699a65acf6522cf28a589874746deb495ba73caff207bb7ec0399783/pandas-1.1.5-cp36-cp36m-manylinux2014_aarch64.whl#sha256=0de3ddb414d30798cbf56e642d82cac30a80223ad6fe484d66c0ce01a84d6f2f (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win32: https://files.pythonhosted.org/packages/92/2a/a7825928dd0ddd81bd4b2dcd3723a7082c2be42645095d03cd0fe345936c/pandas-1.1.5-cp36-cp36m-win32.whl#sha256=70865f96bb38fec46f7ebd66d4b5cfd0aa6b842073f298d621385ae3898d28b5 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp36-cp36m-win_amd64: https://files.pythonhosted.org/packages/79/87/8bb36bd4ebae147612c73d1bdc1385db7beebb9eb141c4bfefb33f52c87c/pandas-1.1.5-cp36-cp36m-win_amd64.whl#sha256=19a2148a1d02791352e9fa637899a78e371a3516ac6da5c4edc718f60cbae648 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/b5/ac/5ec0601ce698235cad8559dfe0ae5ace903a359d617a8c4c033f9879faf8/pandas-1.1.5-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=26fa92d3ac743a149a31b21d6f4337b0594b6302ea5575b37af9ca9611e8981a (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/12/ce/5da11d852dc0bacce86ec8abe802a6a55bfe20823845b4dc609b0280cf90/pandas-1.1.5-cp37-cp37m-manylinux1_i686.whl#sha256=c16d59c15d946111d2716856dd5479221c9e4f2f5c7bc2d617f39d870031e086 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/fd/70/e8eee0cbddf926bf51958c7d6a86bc69167c300fa2ba8e592330a2377d1b/pandas-1.1.5-cp37-cp37m-manylinux1_x86_64.whl#sha256=3be7a7a0ca71a2640e81d9276f526bca63505850add10206d0da2e8a0a325dae (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux2014_aarch64: https://files.pythonhosted.org/packages/82/13/44c05005f9eafda56651b9f27c2b89c803d78ca2136e43b72c0e7a5033ee/pandas-1.1.5-cp37-cp37m-manylinux2014_aarch64.whl#sha256=573fba5b05bf2c69271a32e52399c8de599e4a15ab7cec47d3b9c904125ab788 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/e1/08/b059d45fc7a14ff9dcfa010324a3e79ff24a333cc0a81ae097accf236213/pandas-1.1.5-cp37-cp37m-win32.whl#sha256=21b5a2b033380adbdd36b3116faaf9a4663e375325831dac1b519a44f9e439bb (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/47/17/5c4b04caa8fe1dca2aa940dcc00319aa77c84fbdb71f83869a0900cac660/pandas-1.1.5-cp37-cp37m-win_amd64.whl#sha256=24c7f8d4aee71bfa6401faeba367dd654f696a77151a8a28bc2013f7ced4af98 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/d7/ce/fd9ccaf9c328ead3024950f0799d24fb4ad328d3949e21d68e2e2338df07/pandas-1.1.5-cp38-cp38-macosx_10_9_x86_64.whl#sha256=2860a97cbb25444ffc0088b457da0a79dc79f9c601238a3e0644312fcc14bf11 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/ec/ae/416c4b26a1cbcc57640733b738189a66f1fc2be568bdc88a0356a5a7e33a/pandas-1.1.5-cp38-cp38-manylinux1_i686.whl#sha256=5008374ebb990dad9ed48b0f5d0038124c73748f5384cc8c46904dace27082d9 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/f9/f4/ede7c643939c132b0692a737800747ce5ba0e8068af27730dfda936c9bf1/pandas-1.1.5-cp38-cp38-manylinux1_x86_64.whl#sha256=2c2f7c670ea4e60318e4b7e474d56447cf0c7d83b3c2a5405a0dbb2600b9c48e (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux2014_aarch64: https://files.pythonhosted.org/packages/97/7f/865e78beaac43e57b7dd066cc28cd85a2b5687334188dbeca439bf13845b/pandas-1.1.5-cp38-cp38-manylinux2014_aarch64.whl#sha256=0a643bae4283a37732ddfcecab3f62dd082996021b980f580903f4e8e01b3c5b (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/f4/b0/63aa0d048e4c3be3f0d2c3851cde44ce644bac3f527f9239df5ca15947d1/pandas-1.1.5-cp38-cp38-win32.whl#sha256=5447ea7af4005b0daf695a316a423b96374c9c73ffbd4533209c5ddc369e644b (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/fd/f5/2b5dc56305fcb4bf0c176035ca1a2ed4fc2652362a8eb58f5b0d9bccfe22/pandas-1.1.5-cp38-cp38-win_amd64.whl#sha256=4c62e94d5d49db116bef1bd5c2486723a292d79409fc9abd51adf9e05329101d (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/b3/4f/6a2bdef087388a59245976008e0e0b4297659fd9796112d85cce766c3cd1/pandas-1.1.5-cp39-cp39-macosx_10_9_x86_64.whl#sha256=731568be71fba1e13cae212c362f3d2ca8932e83cb1b85e3f1b4dd77d019254a (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/69/c1/bf486a9d03e1658bbab5212315dd0df49ddaccaa69f81c0dc17820ede978/pandas-1.1.5-cp39-cp39-manylinux1_i686.whl#sha256=c61c043aafb69329d0f961b19faa30b1dab709dd34c9388143fc55680059e55a (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/d0/e1/64f9c1fccd5eebdf177e917e5499b6da266c409b6eba75b93a8cd3b8ccee/pandas-1.1.5-cp39-cp39-manylinux1_x86_64.whl#sha256=2b1c6cd28a0dfda75c7b5957363333f01d370936e4c6276b7b8e696dd500582a (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/19/96/6bd84872fcdf082c4a60b2b996a96cce13295da7198f38abd01c92d04bcb/pandas-1.1.5-cp39-cp39-win32.whl#sha256=c94ff2780a1fd89f190390130d6d36173ca59fcfb3fe0ff596f9a56518191ccb (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/46/f9/d78955c88e045fa220392cc311e41764f8decf868594b5f92d8fa1d1b39e/pandas-1.1.5-cp39-cp39-win_amd64.whl#sha256=edda9bacc3843dfbeebaf7a701763e68e741b08fccb889c003b0a52f0ee95782 (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1)
  Found link https://files.pythonhosted.org/packages/fb/e4/828bb9c2474ff6016e5ce96a78220d485436d5468c23068f4f6c2eb9cff8/pandas-1.1.5.tar.gz#sha256=f10fc41ee3c75a474d3bdf68d396f10782d013d7f67db99c0efbfd0acb99701b (from https://pypi.org/simple/pandas/) (requires-python:>=3.6.1), version: 1.1.5
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/c3/21/d040fb826ad7efe9942a1a6157f8310e8457e7c4c55cbc24c89ca1ce423d/pandas-1.2.0rc0-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=a5c18a9889c5f9684da3149c3788eb8a32dc02d86032d828101ed681dacb74c3 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/db/d9/21e9950191cdb93cc9444279fabb322f151fcec991b7e1f70a571d12f0aa/pandas-1.2.0rc0-cp37-cp37m-manylinux1_i686.whl#sha256=88a9406e9584921dd1bb03fd90b5fbbec7c3314ee3a98bc6326d92d1b003b245 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/90/ff/dfbd95616b6a773f3ea3d138f491cedac567728738a18495aed8095ae235/pandas-1.2.0rc0-cp37-cp37m-manylinux1_x86_64.whl#sha256=22a9f75bc7467aa1c4655af0626313ccdece7c6a65df483abae171dd95624197 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/26/03/47e61433685ad173cb02d895eb2c24a37ce2b44eb008bcd1833aa2b6b3bc/pandas-1.2.0rc0-cp37-cp37m-win32.whl#sha256=41aefe6c85340b3f2bee9af5991a0969b5462249c3121864ab587d91a1e9266a (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/b7/75/515978dfa3e0d171fcc2a37883c7cca2db99118e508f8bac3183c6e6dd30/pandas-1.2.0rc0-cp37-cp37m-win_amd64.whl#sha256=9fb5a14a2c6a439eea171da94fa317d53ebe860186468c57dec1ec1c496d91dc (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/b2/63/8a85c66111e4ad551194f1caa285b5545a883d3735b9dfca3e3959b490c8/pandas-1.2.0rc0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=1c07e440a9100c84622fa4ab39d7a0f9c71b6861018e0239eba0a4faab3a589c (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/c6/51/363e46cf58a0771a7bc551840005646fa18f07b59fc795fd3223bd34cdb0/pandas-1.2.0rc0-cp38-cp38-manylinux1_i686.whl#sha256=ca59eee6cd400ac544353ec18e3b9c06d1cb2038e12dd231a323694dbd0d5e60 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/c1/2b/e18f5ac97aaa122faaf537574fa3d89dfa9b36ec99199053bbd67f3593a7/pandas-1.2.0rc0-cp38-cp38-manylinux1_x86_64.whl#sha256=ec558887dab3abc3712e03228a0217d9a03b6d25d12468fb5c3339efe28ebaae (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/26/67/b3feaf40278654e009bfd89acdb56e58fb76d7ca26830c25bcac32ac53a7/pandas-1.2.0rc0-cp38-cp38-win32.whl#sha256=341299b1b2206eaf2d2bc21fe0aa8ab810e357b4181a6f9594a6282c177b1dd0 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/71/5b/cf2a1cd566d75225a18a179a07edf1b5445472b4ad7b89bb4cff6c089934/pandas-1.2.0rc0-cp38-cp38-win_amd64.whl#sha256=d5ab3905ae48c5ea67a9f57fb6278dd2902aa0640de0f5eb5dab05fd49cbd228 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/62/21/0c9d34731cff3a04ec2fdcea29de6acc253c64619c78fb6094e2428e7752/pandas-1.2.0rc0-cp39-cp39-macosx_10_9_x86_64.whl#sha256=3230c81f793e86fc051586b0d1b9931c8fd024be9187ddc5b4ef5109985b7bba (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/df/02/f6c3320f62c14e785da7fff69cfbc6efe7806b47f5d64ed83590257b337c/pandas-1.2.0rc0-cp39-cp39-manylinux1_i686.whl#sha256=e1d9ac9205b6251d38b1cdb72aa8db7d8f5d27b38a357e2b31a402cd57a2d1be (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/bd/58/19ec1e89176668f9c044aa20af45dac575854c1136646d5e68950ccd9cc8/pandas-1.2.0rc0-cp39-cp39-manylinux1_x86_64.whl#sha256=009cd53176dc2a1993db8292e177d02d2721247adf41e0d62a9da936f7d34873 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/39/fd/3adcab805315d01b4ab096463e4ca626787bf440d548a86a63bacaaf7ee7/pandas-1.2.0rc0-cp39-cp39-win32.whl#sha256=2cd95ab92d8f3901dc8a5baa8c6406b13d8f56f0b2820b045b1547847831e853 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/dd/99/d427b5ee136faf7e34556e5f593dce0515589a4f0180d8f05b386f559c62/pandas-1.2.0rc0-cp39-cp39-win_amd64.whl#sha256=76165e63aa098025244d75676269b090ffeb7c7669be82118ccea921018e7ef9 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Found link https://files.pythonhosted.org/packages/eb/02/62b960b193962bd5af4ab5258f297f6009df67af3759bd24fb5bd6f9b546/pandas-1.2.0rc0.tar.gz#sha256=c81d202f2077dfe09f722ec566ceade4276e92f66b7156214a5b9f7c75fa1be9 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1), version: 1.2.0rc0
  Skipping link: none of the wheel's tags match: cp37-cp37m-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/a2/ea/2a50af12a4b2ed024b07f303570657cc45fa581512b7d13e3dafa25ab8d7/pandas-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=cba93d4fd3b0a42858b2b599495aff793fb5d94587979f45a14177d1217ba446 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_i686: https://files.pythonhosted.org/packages/94/67/c7c85d350c09245b4862ce545ef54e62c6f85f23b39269974ee5ba9ee879/pandas-1.2.0-cp37-cp37m-manylinux1_i686.whl#sha256=9e18631d996fe131de6cb31a8bdae18965cc8f39eb23fdfbbf42808ecc63dabf (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-manylinux1_x86_64: https://files.pythonhosted.org/packages/ff/bd/fb376f9fbad92b9a6efdbb30ff32c80f3cba1368689309cbb5566364af5c/pandas-1.2.0-cp37-cp37m-manylinux1_x86_64.whl#sha256=7b54c14130a3448d81eed1348f52429c23e27188d9db6e6d4afeae792bc49c11 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win32: https://files.pythonhosted.org/packages/45/2d/73b2b71f2621c45d5ed31e6b4405e7cdaaa2750d1f1c1ca1fd898e904ae4/pandas-1.2.0-cp37-cp37m-win32.whl#sha256=6c1a57e4d0d6f9633a07817c44e6b36d81c265fe4c52d0c0505513a2d0f7953c (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp37-cp37m-win_amd64: https://files.pythonhosted.org/packages/11/57/ae7d1ce265e057b2b44e25f9dec0b1d38e7a0e5458fc8d502ab9abf50e75/pandas-1.2.0-cp37-cp37m-win_amd64.whl#sha256=43482789c55cbabeed9482263cfc98a11e8fcae900cb63ef038948acb4a72570 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/df/36/86f5f575b71bf2c92486dd789eb16761ea2edf7ba0336914a60773fa8f1f/pandas-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=0be6102dd99910513e75ed6536284743ead810349c51bdeadd2a5b6649f30abb (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_i686: https://files.pythonhosted.org/packages/f8/e1/47ae0274084dd307664b86064bef7d26eb14c131ff5f52c22f1ea8049865/pandas-1.2.0-cp38-cp38-manylinux1_i686.whl#sha256=9c6692cea6d56da8650847172bdb148622f545e7782d17995822434c79d7a211 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux1_x86_64: https://files.pythonhosted.org/packages/7d/4d/c1df56ed2370839f5a1b7bc5a4835ee73f46c2582beb5d3b14e87f2b3dc0/pandas-1.2.0-cp38-cp38-manylinux1_x86_64.whl#sha256=272675a98fa4954b9fc0933df775596fc942e50015d7e75d8f19548808a2bfdf (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-manylinux2014_aarch64: https://files.pythonhosted.org/packages/94/2f/074fe01ac61b66d830fb4caa40eaada74cd34a975489eddf23b31d62cf33/pandas-1.2.0-cp38-cp38-manylinux2014_aarch64.whl#sha256=33318fa24b192b1a4684347ff76679a7267fd4e547da9f71556a5914f0dc10e7 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win32: https://files.pythonhosted.org/packages/d0/fc/f6dc9759e9a2311f0bb3af351b6aa6f6d22cf036b8a742ca81903a951863/pandas-1.2.0-cp38-cp38-win32.whl#sha256=3bc6d2be03cb75981d8cbeda09503cd9d6d699fc0dc28a65e197165ad527b7b8 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp38-cp38-win_amd64: https://files.pythonhosted.org/packages/78/48/625e3ed1b70cb7c74aca401ed8768a95c7dee0c44307fcf7e5172004fda4/pandas-1.2.0-cp38-cp38-win_amd64.whl#sha256=7904ee438549b5223ce8dc008772458dd7c5cf0ccc64cf903e81202400702235 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-macosx_10_9_x86_64: https://files.pythonhosted.org/packages/a7/b3/af3243ca2bdbdec9681af49f6a7ebd28ec6ac28d30555abb0a7f2af19920/pandas-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl#sha256=f8b87d2f541cd9bc4ecfe85a561abac85c33fe4de4ce70cca36b2768af2611f5 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_i686: https://files.pythonhosted.org/packages/76/b5/8d36eb3b858fa486382e5b2bf045a0bf262358c5fe222449d6af52675cda/pandas-1.2.0-cp39-cp39-manylinux1_i686.whl#sha256=91fd0b94e7b98528177a05e6f65efea79d7ef9dec15ee48c7c69fc39fdd87235 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-manylinux1_x86_64: https://files.pythonhosted.org/packages/c7/83/94eea16f994984c5770b9bfd8f76fb2be005761b0ce9bdfceeddca4b434d/pandas-1.2.0-cp39-cp39-manylinux1_x86_64.whl#sha256=8f92b07cdbfa3704d85b4264e52c216cafe6c0059b0d07cdad8cb29e0b90f2b8 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-win32: https://files.pythonhosted.org/packages/87/6e/b21f8ee12ea45c206919b0ff398268a0feccf4d9e27a5aa083af9bd1216b/pandas-1.2.0-cp39-cp39-win32.whl#sha256=2d8b4f532db37418121831a461fd107d826c240b098f52e7a1b4ab3d5aaa4fb2 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Skipping link: none of the wheel's tags match: cp39-cp39-win_amd64: https://files.pythonhosted.org/packages/92/ee/32c475db84dad6b8b38e57dc927ea38f64cd4e3ff40507bfddc2d216e734/pandas-1.2.0-cp39-cp39-win_amd64.whl#sha256=616478c1bd8fe1e600f521ae2da434e021c11e7a4e5da3451d02906143d3629a (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1)
  Found link https://files.pythonhosted.org/packages/75/bc/abf2e8cc6a9d918008774b958613cfdbd3a8c135cffb0757f78fabd8268f/pandas-1.2.0.tar.gz#sha256=e03386615b970b8b41da6a68afe717626741bb2431cec993640685614c0680e4 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1), version: 1.2.0
Given no hashes to check 97 links for project 'pandas': discarding no candidates
Using version 1.2.0 (newest of versions: 0.1, 0.2, 0.3.0, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.5.0, 0.6.0, 0.6.1, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.8.0, 0.8.1, 0.9.0, 0.9.1, 0.10.0, 0.10.1, 0.11.0, 0.12.0, 0.13.0, 0.13.1, 0.14.0, 0.14.1, 0.15.0, 0.15.1, 0.15.2, 0.16.0, 0.16.1, 0.16.2, 0.17.0, 0.17.1, 0.18.0, 0.18.1, 0.19.0, 0.19.1, 0.19.2, 0.20.0, 0.20.1, 0.20.2, 0.20.3, 0.21.0, 0.21.1, 0.22.0, 0.23.0, 0.23.1, 0.23.2, 0.23.3, 0.23.4, 0.24.0, 0.24.1, 0.24.2, 0.25.0, 0.25.1, 0.25.2, 0.25.3, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.1.0, 1.1.1, 1.1.2, 1.1.3, 1.1.4, 1.1.5, 1.2.0)
Collecting pandas
  Created temporary directory: /private/var/folders/1b/7jpz8y9d0d5cdbgtn0p3t86r0000gn/T/pip-unpack-s0o4n8mk
  Looking up "https://files.pythonhosted.org/packages/75/bc/abf2e8cc6a9d918008774b958613cfdbd3a8c135cffb0757f78fabd8268f/pandas-1.2.0.tar.gz" in the cache
  Current age based on date: 15590
  Ignoring unknown cache-control directive: immutable
  Freshness lifetime from max-age: 365000000
  The response is "fresh", returning cached response
  365000000 > 15590
  Using cached pandas-1.2.0.tar.gz (5.4 MB)
  Added pandas from https://files.pythonhosted.org/packages/75/bc/abf2e8cc6a9d918008774b958613cfdbd3a8c135cffb0757f78fabd8268f/pandas-1.2.0.tar.gz#sha256=e03386615b970b8b41da6a68afe717626741bb2431cec993640685614c0680e4
  Created temporary directory: /private/var/folders/1b/7jpz8y9d0d5cdbgtn0p3t86r0000gn/T/pip-build-env-a3vtvizu
  Installing build dependencies: started
  Installing build dependencies: finished with status 'error'
Exception information:
Traceback (most recent call last):
  File "/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip/_internal/cli/base_command.py", line 228, in _main
    status = self.run(options, args)
  File "/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip/_internal/cli/req_command.py", line 182, in wrapper
    return func(self, options, args)
  File "/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip/_internal/commands/install.py", line 323, in run
    requirement_set = resolver.resolve(
  File "/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py", line 183, in resolve
    discovered_reqs.extend(self._resolve_one(requirement_set, req))
  File "/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py", line 388, in _resolve_one
    abstract_dist = self._get_abstract_dist_for(req_to_install)
  File "/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py", line 340, in _get_abstract_dist_for
    abstract_dist = self.preparer.prepare_linked_requirement(req)
  File "/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip/_internal/operations/prepare.py", line 482, in prepare_linked_requirement
    abstract_dist = _get_prepared_distribution(
  File "/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip/_internal/operations/prepare.py", line 91, in _get_prepared_distribution
    abstract_dist.prepare_distribution_metadata(finder, build_isolation)
  File "/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py", line 38, in prepare_distribution_metadata
    self._setup_isolation(finder)
  File "/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py", line 66, in _setup_isolation
    self.req.build_env.install_requirements(
  File "/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip/_internal/build_env.py", line 205, in install_requirements
    call_subprocess(args, spinner=spinner)
  File "/Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip/_internal/utils/subprocess.py", line 242, in call_subprocess
    raise InstallationError(exc_msg)
pip._internal.exceptions.InstallationError: Command errored out with exit status 1: /Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/bin/python /Users/gennaro/.local/share/virtualenvs/models_test-imLIyxoR/lib/python3.9/site-packages/pip install --ignore-installed --no-user --prefix /private/var/folders/1b/7jpz8y9d0d5cdbgtn0p3t86r0000gn/T/pip-build-env-a3vtvizu/overlay --no-warn-script-location -v --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- setuptools wheel 'Cython>=0.29.21,<3' 'numpy==1.16.5; python_version=='"'"'3.7'"'"' and platform_system!='"'"'AIX'"'"'' 'numpy==1.17.3; python_version=='"'"'3.8'"'"' and platform_system!='"'"'AIX'"'"'' 'numpy==1.16.5; python_version=='"'"'3.7'"'"' and platform_system=='"'"'AIX'"'"'' 'numpy==1.17.3; python_version=='"'"'3.8'"'"' and platform_system=='"'"'AIX'"'"'' 'numpy; python_version>='"'"'3.9'"'"'' Check the logs for full command output.
Removed pandas from https://files.pythonhosted.org/packages/75/bc/abf2e8cc6a9d918008774b958613cfdbd3a8c135cffb0757f78fabd8268f/pandas-1.2.0.tar.gz#sha256=e03386615b970b8b41da6a68afe717626741bb2431cec993640685614c0680e4
Removed build tracker: '/private/var/folders/1b/7jpz8y9d0d5cdbgtn0p3t86r0000gn/T/pip-req-tracker-5p0wqbrg'

✘ Installation Failed

and similar (mutatis mutandis) for a lot more of other packages (numpy, scikit and so forth).

frostming commented 3 years ago

There is no error message about the failure. What about pipenv run pip install numpy?

gennaro-tedesco commented 3 years ago

There is no error message about the failure. What about pipenv run pip install numpy?

This gives the output that I stated in my initial comment, namely

 ----------------------------------------
  ERROR: Failed building wheel for numpy
Failed to build numpy
ERROR: Could not build wheels for numpy which use PEP 517 and cannot be installed directly

after a long unreadable stacktrace which I deem at this point not very useful to share (similar to the above for pandas). It seems then that there is no current alignment among pip, pipenv and brew on how to combine each other updates, which appears quite puzzling to say the least.

For the moment I will use the workaround provided by export SYSTEM_VERSION_COMPAT=1 while waiting for the official wheels to be aligned between pip and brew.

hbar137 commented 3 years ago

Is there a fix for this? I tried export SYSTEM_VERSION_COMPAT=1 but get error

########### CLIB COMPILER OPTIMIZATION ########### Platform : Architecture: aarch64 Compiler : clang

CPU baseline : Requested : 'min' Enabled : NEON NEON_FP16 NEON_VFPV4 ASIMD Flags : none Extra checks: none

CPU dispatch : Requested : 'max -xop -fma4' Enabled : ASIMDHP ASIMDDP Generated : none CCompilerOpt._cache_write[796] : write cache to path -> /private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-345t8gh2/numpy/build/temp.macosx-11-arm64-3.9/ccompiler_opt_cache_clib.py

ERROR: Failed building wheel for numpy ERROR: Could not build wheels for numpy which use PEP 517 and cannot be installed directly

I am on new MacBook with M1 processor. I installed pipenv through brew. Appreciate the help!

tgallenbeck commented 3 years ago

Is there a fix for this? I tried export SYSTEM_VERSION_COMPAT=1 but get error

########### CLIB COMPILER OPTIMIZATION ########### Platform : Architecture: aarch64 Compiler : clang

CPU baseline : Requested : 'min' Enabled : NEON NEON_FP16 NEON_VFPV4 ASIMD Flags : none Extra checks: none

CPU dispatch :

Requested : 'max -xop -fma4' Enabled : ASIMDHP ASIMDDP Generated : none CCompilerOpt._cache_write[796] : write cache to path -> /private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-345t8gh2/numpy/build/temp.macosx-11-arm64-3.9/ccompiler_opt_cache_clib.py ERROR: Failed building wheel for numpy ERROR: Could not build wheels for numpy which use PEP 517 and cannot be installed directly

I am on new MacBook with M1 processor. I installed pipenv through brew. Appreciate the help!

No permanent fix yet (that I know of), but the workaround works fine for now. I've been watching this issue.

What error are you getting? Are you getting an error when running the export SYSTEM_VERSION_COMPAT=1 command?

hbar137 commented 3 years ago

Yes with export SYSTEM_VERSION_COMPAT=1 I am able to get numpy installed but when I try to install pandas I get error as below

    ERROR: Failed building wheel for numpy
    Running setup.py clean for numpy
    ERROR: Command errored out with exit status 1:
     command: /Users/****/.local/share/virtualenvs/pipenv_test-MIifwkUl/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-02_j_cty/numpy/setup.py'"'"'; __file__='"'"'/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-02_j_cty/numpy/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' clean --all
         cwd: /private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-02_j_cty/numpy
    Complete output (10 lines):
    Running from numpy source directory.
tgallenbeck commented 3 years ago

Yes with export SYSTEM_VERSION_COMPAT=1 I am able to get numpy installed but when I try to install pandas I get error as below

    ERROR: Failed building wheel for numpy
    Running setup.py clean for numpy
    ERROR: Command errored out with exit status 1:
     command: /Users/****/.local/share/virtualenvs/pipenv_test-MIifwkUl/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-02_j_cty/numpy/setup.py'"'"'; __file__='"'"'/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-02_j_cty/numpy/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' clean --all
         cwd: /private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-02_j_cty/numpy
    Complete output (10 lines):
    Running from numpy source directory.

Weird, that shouldn't happen. I would completely destroy your environment and Pipfiles (if suitable) and rebuild from scratch. Note that when you run export SYSTEM_VERSION_COMPAT=1, it is only applied to that specific terminal runtime (to my knowledge), and only as long as that terminal is open. If you close it, you will once again have to issue the command. You could also apply it persistently if you need to

hbar137 commented 3 years ago

Thank you for the response. Yes, I use the same terminal. Were you able to install pandas in addition to numpy?

tgallenbeck commented 3 years ago

Thank you for the response. Yes, I use the same terminal. Were you able to install pandas in addition to numpy?

Yup

hbar137 commented 3 years ago

I could not get pipenv to install numpy and pandas so I ended using miniforge. I am a big fan of pipenv and would love to see this issue addressed. Thank you for the great work!

jruokolainen commented 3 years ago

The same happened to me after updating pipenv, can't install spicy, numpy or pandas atleast

jruokolainen commented 3 years ago

And locking doensn't work anymore, on newest osx

tgallenbeck commented 3 years ago

I'm not understanding why y'all can't use the workaround. At least post up the error your getting image

hbar137 commented 3 years ago

Below is what I get after I do % export SYSTEM_VERSION_COMPAT=1 and % pipenv install pandas

(base) foooooo@m1 test % export SYSTEM_VERSION_COMPAT=1 (base) foooooo@m1 test % pipenv install pandas Creating a virtualenv for this project... Pipfile: /Users/foooooo/Documents/projects/test/Pipfile Using /Users/foooooo/miniforge3/bin/python3 (3.9.1) to create virtualenv... ⠼ Creating virtual environment...created virtual environment CPython3.9.1.final.0-64 in 253ms creator CPython3Posix(dest=/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB, clear=False, no_vcs_ignore=False, global=False) seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/Users/foooooo/Library/Application Support/virtualenv) added seed packages: pip==21.0.1, setuptools==52.0.0, wheel==0.36.2 activators BashActivator,CShellActivator,FishActivator,PowerShellActivator,PythonActivator,XonshActivator

✔ Successfully created virtual environment! Virtualenv location: /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB Creating a Pipfile for this project... Installing pandas... ✘

Error: An error occurred while installing pandas! WARNING: I/O operation on closed file Traceback (most recent call last): File "/Library/Python/3.8/site-packages/pipenv/core.py", line 2126, in do_install sp.write_err( File "/Library/Python/3.8/site-packages/pipenv/vendor/vistir/spin.py", line 316, in write_err self.out_buff.write(decode_output(text, target_stream=self.out_buff)) ValueError: I/O operation on closed file

During handling of the above exception, another exception occurred:

Traceback (most recent call last): File "/usr/local/bin/pipenv", line 8, in sys.exit(cli()) File "/Library/Python/3.8/site-packages/pipenv/vendor/click/core.py", line 829, in call return self.main(args, kwargs) File "/Library/Python/3.8/site-packages/pipenv/vendor/click/core.py", line 782, in main rv = self.invoke(ctx) File "/Library/Python/3.8/site-packages/pipenv/vendor/click/core.py", line 1259, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File "/Library/Python/3.8/site-packages/pipenv/vendor/click/core.py", line 1066, in invoke return ctx.invoke(self.callback, ctx.params) File "/Library/Python/3.8/site-packages/pipenv/vendor/click/core.py", line 610, in invoke return callback(args, kwargs) File "/Library/Python/3.8/site-packages/pipenv/vendor/click/decorators.py", line 73, in new_func return ctx.invoke(f, obj, *args, *kwargs) File "/Library/Python/3.8/site-packages/pipenv/vendor/click/core.py", line 610, in invoke return callback(args, kwargs) File "/Library/Python/3.8/site-packages/pipenv/vendor/click/decorators.py", line 21, in new_func return f(get_current_context(), *args, **kwargs) File "/Library/Python/3.8/site-packages/pipenv/cli/command.py", line 233, in install retcode = do_install( File "/Library/Python/3.8/site-packages/pipenv/core.py", line 2147, in do_install sp.write_err(vistir.compat.fs_str( File "/Library/Python/3.8/site-packages/pipenv/vendor/vistir/spin.py", line 316, in write_err self.out_buff.write(decode_output(text, target_stream=self.out_buff)) ValueError: I/O operation on closed file (base) foooooo@m1 test % (base) foooooo@m1 test % (base) foooooo@m1 test % pipenv --rm Removing virtualenv (/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB)... (base) foooooo@m1 test % pipenv install pandas Creating a virtualenv for this project... Pipfile: /Users/foooooo/Documents/projects/test/Pipfile Using /Users/foooooo/miniforge3/bin/python3.9 (3.9.1) to create virtualenv... ⠸ Creating virtual environment...created virtual environment CPython3.9.1.final.0-64 in 193ms creator CPython3Posix(dest=/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB, clear=False, no_vcs_ignore=False, global=False) seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/Users/foooooo/Library/Application Support/virtualenv) added seed packages: pip==21.0.1, setuptools==52.0.0, wheel==0.36.2 activators BashActivator,CShellActivator,FishActivator,PowerShellActivator,PythonActivator,XonshActivator

✔ Successfully created virtual environment! Virtualenv location: /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB Installing pandas... Error: An error occurred while installing pandas! Error text: Collecting pandas Using cached pandas-1.2.2.tar.gz (5.5 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.2.1.tar.gz (5.5 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.2.0.tar.gz (5.4 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.1.5.tar.gz (5.2 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.1.4.tar.gz (5.2 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.1.3.tar.gz (5.2 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.1.2.tar.gz (5.2 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.1.1.tar.gz (5.2 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.1.0.tar.gz (5.2 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.0.5.tar.gz (5.0 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.0.4.tar.gz (5.0 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.0.3.tar.gz (5.0 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.0.2.tar.gz (5.0 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.0.1.tar.gz (4.9 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-1.0.0.tar.gz (4.8 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-0.25.3.tar.gz (12.6 MB) Using cached pandas-0.25.2.tar.gz (12.6 MB) Using cached pandas-0.25.1.tar.gz (12.6 MB) Using cached pandas-0.25.0.tar.gz (12.6 MB) Using cached pandas-0.24.2.tar.gz (11.8 MB) Using cached pandas-0.24.1.tar.gz (11.8 MB) Using cached pandas-0.24.0.tar.gz (11.8 MB) Using cached pandas-0.23.4.tar.gz (10.5 MB) Using cached pandas-0.23.3.tar.gz (10.5 MB) Using cached pandas-0.23.2.tar.gz (10.0 MB) Using cached pandas-0.23.1.tar.gz (13.1 MB) Using cached pandas-0.23.0.tar.gz (13.1 MB) Using cached pandas-0.22.0.tar.gz (11.3 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-0.21.1.tar.gz (11.3 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-0.21.0.tar.gz (11.3 MB) Installing build dependencies: started Installing build dependencies: finished with status 'error' Using cached pandas-0.20.3.tar.gz (10.4 MB) Using cached pandas-0.20.2.tar.gz (10.3 MB) Using cached pandas-0.20.1.tar.gz (10.3 MB) Using cached pandas-0.20.0.tar.gz (10.3 MB) Using cached pandas-0.19.2.tar.gz (9.2 MB) Using cached pandas-0.19.1.zip (9.5 MB) Using cached pandas-0.19.1.tar.gz (8.4 MB) Using cached pandas-0.19.0.zip (9.5 MB) Using cached pandas-0.19.0.tar.gz (8.3 MB) Using cached pandas-0.18.1.zip (8.5 MB) Using cached pandas-0.18.1.tar.gz (7.3 MB) Using cached pandas-0.18.0.tar.gz (7.1 MB) Downloading pandas-0.17.1.zip (7.7 MB) Downloading pandas-0.17.1.tar.gz (6.7 MB) Downloading pandas-0.17.0.zip (7.2 MB) Downloading pandas-0.17.0.tar.gz (6.5 MB) Downloading pandas-0.16.2.zip (5.4 MB) Downloading pandas-0.16.2.tar.gz (4.9 MB) Downloading pandas-0.16.1.zip (5.8 MB) Downloading pandas-0.16.1.tar.gz (5.0 MB) Downloading pandas-0.16.0.zip (5.2 MB) Downloading pandas-0.16.0.tar.gz (4.8 MB) Downloading pandas-0.15.2.zip (5.0 MB) Downloading pandas-0.15.2.tar.gz (4.6 MB) Downloading pandas-0.15.1.zip (4.9 MB) Downloading pandas-0.15.1.tar.gz (4.5 MB) Downloading pandas-0.15.0.zip (4.9 MB) Downloading pandas-0.15.0.tar.gz (4.5 MB) Downloading pandas-0.14.1.zip (7.5 MB) Downloading pandas-0.14.1.tar.gz (6.7 MB) Downloading pandas-0.14.0.zip (7.3 MB) Downloading pandas-0.14.0.tar.gz (6.5 MB) Downloading pandas-0.13.1.zip (6.9 MB) Downloading pandas-0.13.1.tar.gz (6.1 MB) Downloading pandas-0.13.0.tar.gz (3.6 MB) Downloading pandas-0.12.0.zip (3.4 MB) Downloading pandas-0.12.0.tar.gz (3.2 MB) Downloading pandas-0.11.0.zip (3.0 MB) Collecting python-dateutil>=2 Using cached python_dateutil-2.8.1-py2.py3-none-any.whl (227 kB) Collecting pytz Downloading pytz-2021.1-py2.py3-none-any.whl (510 kB) Collecting numpy>=1.7.0b2 Using cached numpy-1.20.1.zip (7.8 MB) Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Preparing wheel metadata: started Preparing wheel metadata: finished with status 'done' Collecting six>=1.5 Using cached six-1.15.0-py2.py3-none-any.whl (10 kB) Building wheels for collected packages: pandas, numpy Building wheel for pandas (setup.py): started Building wheel for pandas (setup.py): finished with status 'error' Running setup.py clean for pandas Building wheel for numpy (PEP 517): started Building wheel for numpy (PEP 517): finished with status 'error' Failed to build pandas numpy

ERROR: Command errored out with exit status 1: command: /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/bin/python /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib/python3.9/site-packages/pip install --ignore-installed --no-user --prefix /private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-build-env-2d1847do/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- setuptools wheel 'Cython>=0.29.21,<3' 'numpy==1.16.5; python_version=='"'"'3.7'"'"' and platform_system!='"'"'AIX'"'"'' 'numpy==1.17.3; python_version=='"'"'3.8'"'"' and platform_system!='"'"'AIX'"'"'' 'numpy==1.16.5; python_version=='"'"'3.7'"'"' and platform_system=='"'"'AIX'"'"'' 'numpy==1.17.3; python_version=='"'"'3.8'"'"' and platform_system=='"'"'AIX'"'"'' 'numpy; python_version>='"'"'3.9'"'"'' cwd: None Complete output (2249 lines): Ignoring numpy: markers 'python_version == "3.7" and platform_system != "AIX"' don't match your environment Ignoring numpy: markers 'python_version == "3.8" and platform_system != "AIX"' don't match your environment Ignoring numpy: markers 'python_version == "3.7" and platform_system == "AIX"' don't match your environment Ignoring numpy: markers 'python_version == "3.8" and platform_system == "AIX"' don't match your environment Collecting setuptools Using cached setuptools-53.0.0-py3-none-any.whl (784 kB) Collecting wheel Using cached wheel-0.36.2-py2.py3-none-any.whl (35 kB) Collecting Cython<3,>=0.29.21 Using cached Cython-0.29.22-py2.py3-none-any.whl (980 kB) Collecting numpy Using cached numpy-1.20.1.zip (7.8 MB) Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Preparing wheel metadata: started Preparing wheel metadata: finished with status 'done' Building wheels for collected packages: numpy Building wheel for numpy (PEP 517): started Building wheel for numpy (PEP 517): finished with status 'error' ERROR: Command errored out with exit status 1: command: /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/bin/python /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib/python3.9/site-packages/pip/_vendor/pep517/_in_process.py build_wheel /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpjhnfow_j cwd: /private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a Complete output (2220 lines): Running from numpy source directory. numpy/random/_bounded_integers.pxd.in has not changed numpy/random/_philox.pyx has not changed numpy/random/_bounded_integers.pyx.in has not changed numpy/random/_sfc64.pyx has not changed numpy/random/_mt19937.pyx has not changed numpy/random/bit_generator.pyx has not changed Processing numpy/random/_bounded_integers.pyx numpy/random/mtrand.pyx has not changed numpy/random/_generator.pyx has not changed numpy/random/_pcg64.pyx has not changed numpy/random/_common.pyx has not changed Cythonizing sources blas_opt_info: blas_mkl_info: customize UnixCCompiler libraries mkl_rt not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib'] NOT AVAILABLE

blis_info:
  libraries blis not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib']
  NOT AVAILABLE

openblas_info:
  libraries openblas not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib']
  NOT AVAILABLE

atlas_3_10_blas_threads_info:
Setting PTATLAS=ATLAS
  libraries tatlas not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib']
  NOT AVAILABLE

atlas_3_10_blas_info:
  libraries satlas not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib']
  NOT AVAILABLE

atlas_blas_threads_info:
Setting PTATLAS=ATLAS
  libraries ptf77blas,ptcblas,atlas not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib']
  NOT AVAILABLE

atlas_blas_info:
  libraries f77blas,cblas,atlas not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib']
  NOT AVAILABLE

/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/system_info.py:1989: UserWarning:
    Optimized (vendor) Blas libraries are not found.
    Falls back to netlib Blas library which has worse performance.
    A better performance should be easily gained by switching
    Blas library.
  if self._calc_info(blas):
blas_info:
  libraries blas not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib']
  NOT AVAILABLE

/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/system_info.py:1989: UserWarning:
    Blas (http://www.netlib.org/blas/) libraries not found.
    Directories to search for the libraries can be specified in the
    numpy/distutils/site.cfg file (section [blas]) or by setting
    the BLAS environment variable.
  if self._calc_info(blas):
blas_src_info:
  NOT AVAILABLE

/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/system_info.py:1989: UserWarning:
    Blas (http://www.netlib.org/blas/) sources not found.
    Directories to search for the sources can be specified in the
    numpy/distutils/site.cfg file (section [blas_src]) or by setting
    the BLAS_SRC environment variable.
  if self._calc_info(blas):
  NOT AVAILABLE

non-existing path in 'numpy/distutils': 'site.cfg'
lapack_opt_info:
lapack_mkl_info:
  libraries mkl_rt not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib']
  NOT AVAILABLE

openblas_lapack_info:
  libraries openblas not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib']
  NOT AVAILABLE

openblas_clapack_info:
  libraries openblas,lapack not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib']
  NOT AVAILABLE

flame_info:
  libraries flame not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib']
  NOT AVAILABLE

atlas_3_10_threads_info:
Setting PTATLAS=ATLAS
  libraries lapack_atlas not found in /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib
  libraries tatlas,tatlas not found in /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib
  libraries lapack_atlas not found in /usr/lib
  libraries tatlas,tatlas not found in /usr/lib
<class 'numpy.distutils.system_info.atlas_3_10_threads_info'>
  NOT AVAILABLE

atlas_3_10_info:
  libraries lapack_atlas not found in /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib
  libraries satlas,satlas not found in /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib
  libraries lapack_atlas not found in /usr/lib
  libraries satlas,satlas not found in /usr/lib
<class 'numpy.distutils.system_info.atlas_3_10_info'>
  NOT AVAILABLE

atlas_threads_info:
Setting PTATLAS=ATLAS
  libraries lapack_atlas not found in /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib
  libraries ptf77blas,ptcblas,atlas not found in /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib
  libraries lapack_atlas not found in /usr/lib
  libraries ptf77blas,ptcblas,atlas not found in /usr/lib
<class 'numpy.distutils.system_info.atlas_threads_info'>
  NOT AVAILABLE

atlas_info:
  libraries lapack_atlas not found in /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib
  libraries f77blas,cblas,atlas not found in /Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib
  libraries lapack_atlas not found in /usr/lib
  libraries f77blas,cblas,atlas not found in /usr/lib
<class 'numpy.distutils.system_info.atlas_info'>
  NOT AVAILABLE

lapack_info:
  libraries lapack not found in ['/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/lib', '/usr/lib']
  NOT AVAILABLE

/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/system_info.py:1849: UserWarning:
    Lapack (http://www.netlib.org/lapack/) libraries not found.
    Directories to search for the libraries can be specified in the
    numpy/distutils/site.cfg file (section [lapack]) or by setting
    the LAPACK environment variable.
  return getattr(self, '_calc_info_{}'.format(name))()
lapack_src_info:
  NOT AVAILABLE

/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/system_info.py:1849: UserWarning:
    Lapack (http://www.netlib.org/lapack/) sources not found.
    Directories to search for the sources can be specified in the
    numpy/distutils/site.cfg file (section [lapack_src]) or by setting
    the LAPACK_SRC environment variable.
  return getattr(self, '_calc_info_{}'.format(name))()
  NOT AVAILABLE

numpy_linalg_lapack_lite:
  FOUND:
    language = c
    define_macros = [('HAVE_BLAS_ILP64', None), ('BLAS_SYMBOL_SUFFIX', '64_')]

/Users/foooooo/miniforge3/lib/python3.9/distutils/dist.py:274: UserWarning: Unknown distribution option: 'define_macros'
  warnings.warn(msg)
running bdist_wheel
running build
running config_cc
unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
build_src
building py_modules sources
building library "npymath" sources
  adding 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath' to include_dirs.
None - nothing done with h_files = ['build/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath/npy_math_internal.h']
building library "npyrandom" sources
building extension "numpy.core._multiarray_tests" sources
building extension "numpy.core._multiarray_umath" sources
  adding 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/common' to include_dirs.
  adding 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath' to include_dirs.
numpy.core - nothing done with h_files = ['build/src.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_sort.h', 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_partition.h', 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_binsearch.h', 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/funcs.inc', 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/simd.inc', 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops.h', 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/matmul.h', 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/clip.h', 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/common/templ_common.h', 'build/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy/config.h', 'build/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy/_numpyconfig.h', 'build/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy/__multiarray_api.h', 'build/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy/__ufunc_api.h']
building extension "numpy.core._umath_tests" sources
building extension "numpy.core._rational_tests" sources
building extension "numpy.core._struct_ufunc_tests" sources
building extension "numpy.core._operand_flag_tests" sources
building extension "numpy.core._simd" sources
  adding 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/_simd' to include_dirs.
numpy.core - nothing done with h_files = ['build/src.macosx-11.0-arm64-3.9/numpy/core/src/_simd/_simd_inc.h', 'build/src.macosx-11.0-arm64-3.9/numpy/core/src/_simd/_simd_data.inc']
building extension "numpy.fft._pocketfft_internal" sources
building extension "numpy.linalg.lapack_lite" sources
### Warning:  Using unoptimized lapack ###
building extension "numpy.linalg._umath_linalg" sources
### Warning:  Using unoptimized lapack ###
building extension "numpy.random._mt19937" sources
building extension "numpy.random._philox" sources
building extension "numpy.random._pcg64" sources
building extension "numpy.random._sfc64" sources
building extension "numpy.random._common" sources
building extension "numpy.random.bit_generator" sources
building extension "numpy.random._generator" sources
building extension "numpy.random._bounded_integers" sources
building extension "numpy.random.mtrand" sources
building data_files sources
build_src: building npy-pkg config files
running build_py
creating build/lib.macosx-11.0-arm64-3.9
creating build/lib.macosx-11.0-arm64-3.9/numpy
copying numpy/conftest.py -> build/lib.macosx-11.0-arm64-3.9/numpy
copying numpy/version.py -> build/lib.macosx-11.0-arm64-3.9/numpy
copying numpy/_globals.py -> build/lib.macosx-11.0-arm64-3.9/numpy
copying numpy/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy
copying numpy/dual.py -> build/lib.macosx-11.0-arm64-3.9/numpy
copying numpy/_distributor_init.py -> build/lib.macosx-11.0-arm64-3.9/numpy
copying numpy/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy
copying numpy/ctypeslib.py -> build/lib.macosx-11.0-arm64-3.9/numpy
copying numpy/matlib.py -> build/lib.macosx-11.0-arm64-3.9/numpy
copying numpy/_pytesttester.py -> build/lib.macosx-11.0-arm64-3.9/numpy
copying build/src.macosx-11.0-arm64-3.9/numpy/__config__.py -> build/lib.macosx-11.0-arm64-3.9/numpy
creating build/lib.macosx-11.0-arm64-3.9/numpy/compat
copying numpy/compat/py3k.py -> build/lib.macosx-11.0-arm64-3.9/numpy/compat
copying numpy/compat/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/compat
copying numpy/compat/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/compat
copying numpy/compat/_inspect.py -> build/lib.macosx-11.0-arm64-3.9/numpy/compat
creating build/lib.macosx-11.0-arm64-3.9/numpy/compat/tests
copying numpy/compat/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/compat/tests
copying numpy/compat/tests/test_compat.py -> build/lib.macosx-11.0-arm64-3.9/numpy/compat/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/umath.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/fromnumeric.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/_dtype.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/_add_newdocs.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/_methods.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/_internal.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/_string_helpers.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/multiarray.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/_asarray.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/records.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/_add_newdocs_scalars.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/setup_common.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/memmap.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/overrides.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/getlimits.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/_dtype_ctypes.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/defchararray.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/shape_base.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/machar.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/numeric.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/function_base.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/einsumfunc.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/umath_tests.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/_ufunc_config.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/_exceptions.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/numerictypes.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/_type_aliases.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/cversions.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/arrayprint.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
copying numpy/core/code_generators/generate_numpy_api.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core
creating build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_numerictypes.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_scalar_methods.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_scalarmath.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_item_selection.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_array_coercion.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_machar.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_unicode.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_cpu_dispatcher.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_arrayprint.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_scalarbuffer.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_indexerrors.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_print.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_half.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_mem_overlap.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_shape_base.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_deprecations.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_errstate.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_records.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_simd.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_scalarinherit.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_indexing.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_umath.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_numeric.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_function_base.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_datetime.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test__exceptions.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_extint128.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_cython.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_umath_complex.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/_locales.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_defchararray.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_conversion_utils.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_scalarprint.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_casting_unittests.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_abc.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_ufunc.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_dtype.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_umath_accuracy.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_simd_module.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_getlimits.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_einsum.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_api.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_longdouble.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_overrides.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_scalar_ctors.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_multiarray.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_memmap.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_nditer.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_cpu_features.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_protocols.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_regression.py -> build/lib.macosx-11.0-arm64-3.9/numpy/core/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/unixccompiler.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/numpy_distribution.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/conv_template.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/cpuinfo.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/ccompiler.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/msvc9compiler.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/npy_pkg_config.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/misc_util.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/log.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/line_endings.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/lib2def.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/pathccompiler.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/system_info.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/core.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/exec_command.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/from_template.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/mingw32ccompiler.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/extension.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/msvccompiler.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/intelccompiler.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/_shell_utils.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying numpy/distutils/ccompiler_opt.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
copying build/src.macosx-11.0-arm64-3.9/numpy/distutils/__config__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils
creating build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/build.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/config_compiler.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/build_ext.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/config.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/install_headers.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/build_py.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/build_src.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/sdist.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/build_scripts.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/bdist_rpm.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/install_clib.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/build_clib.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/autodist.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/egg_info.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/install.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/develop.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/install_data.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/command
creating build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/gnu.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/compaq.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/intel.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/none.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/nag.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/pg.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/ibm.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/sun.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/nv.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/lahey.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/g95.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/mips.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/hpux.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/environment.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/pathf95.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/fujitsu.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/absoft.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/vast.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/fcompiler
creating build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_system_info.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_ccompiler_opt_conf.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_mingw32ccompiler.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_from_template.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_fcompiler_intel.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_misc_util.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_fcompiler.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_build_ext.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_shell_utils.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_exec_command.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_npy_pkg_config.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_fcompiler_nagfor.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_ccompiler_opt.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_fcompiler_gnu.py -> build/lib.macosx-11.0-arm64-3.9/numpy/distutils/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/doc
copying numpy/doc/constants.py -> build/lib.macosx-11.0-arm64-3.9/numpy/doc
copying numpy/doc/ufuncs.py -> build/lib.macosx-11.0-arm64-3.9/numpy/doc
copying numpy/doc/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/doc
creating build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/cfuncs.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/common_rules.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/crackfortran.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/cb_rules.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/rules.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/f2py2e.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/func2subr.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/__version__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/diagnose.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/capi_maps.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/f90mod_rules.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/f2py_testing.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/use_rules.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/auxfuncs.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
copying numpy/f2py/__main__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py
creating build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_mixed.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_return_logical.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_assumed_shape.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_common.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_kind.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_array_from_pyobj.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_return_real.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/util.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_size.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_callback.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_string.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_module_doc.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_quoted_character.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_parameter.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_semicolon_split.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_compile_function.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_block_docstring.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_return_integer.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_return_character.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_return_complex.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_crackfortran.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_regression.py -> build/lib.macosx-11.0-arm64-3.9/numpy/f2py/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/fft
copying numpy/fft/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/fft
copying numpy/fft/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/fft
copying numpy/fft/helper.py -> build/lib.macosx-11.0-arm64-3.9/numpy/fft
copying numpy/fft/_pocketfft.py -> build/lib.macosx-11.0-arm64-3.9/numpy/fft
creating build/lib.macosx-11.0-arm64-3.9/numpy/fft/tests
copying numpy/fft/tests/test_pocketfft.py -> build/lib.macosx-11.0-arm64-3.9/numpy/fft/tests
copying numpy/fft/tests/test_helper.py -> build/lib.macosx-11.0-arm64-3.9/numpy/fft/tests
copying numpy/fft/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/fft/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/_iotools.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/mixins.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/nanfunctions.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/recfunctions.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/histograms.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/scimath.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/_version.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/user_array.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/format.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/twodim_base.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/index_tricks.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/npyio.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/shape_base.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/stride_tricks.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/utils.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/arrayterator.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/function_base.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/arraysetops.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/arraypad.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/type_check.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/polynomial.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/_datasource.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
copying numpy/lib/ufunclike.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib
creating build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_type_check.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_utils.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_financial_expired.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_twodim_base.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_polynomial.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test__iotools.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_shape_base.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_ufunclike.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_index_tricks.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_arrayterator.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test__version.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_io.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_arraysetops.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_function_base.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_arraypad.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_mixins.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_packbits.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test__datasource.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_stride_tricks.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_recfunctions.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_nanfunctions.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_format.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_histograms.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_regression.py -> build/lib.macosx-11.0-arm64-3.9/numpy/lib/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/linalg
copying numpy/linalg/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/linalg
copying numpy/linalg/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/linalg
copying numpy/linalg/linalg.py -> build/lib.macosx-11.0-arm64-3.9/numpy/linalg
creating build/lib.macosx-11.0-arm64-3.9/numpy/linalg/tests
copying numpy/linalg/tests/test_linalg.py -> build/lib.macosx-11.0-arm64-3.9/numpy/linalg/tests
copying numpy/linalg/tests/test_deprecations.py -> build/lib.macosx-11.0-arm64-3.9/numpy/linalg/tests
copying numpy/linalg/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/linalg/tests
copying numpy/linalg/tests/test_build.py -> build/lib.macosx-11.0-arm64-3.9/numpy/linalg/tests
copying numpy/linalg/tests/test_regression.py -> build/lib.macosx-11.0-arm64-3.9/numpy/linalg/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/ma
copying numpy/ma/extras.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma
copying numpy/ma/testutils.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma
copying numpy/ma/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma
copying numpy/ma/core.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma
copying numpy/ma/bench.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma
copying numpy/ma/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma
copying numpy/ma/timer_comparison.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma
copying numpy/ma/mrecords.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma
creating build/lib.macosx-11.0-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_old_ma.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_core.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_deprecations.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_subclassing.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_extras.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_mrecords.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_regression.py -> build/lib.macosx-11.0-arm64-3.9/numpy/ma/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib
copying numpy/matrixlib/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib
copying numpy/matrixlib/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib
copying numpy/matrixlib/defmatrix.py -> build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib
creating build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_matrix_linalg.py -> build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_defmatrix.py -> build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_interaction.py -> build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_numeric.py -> build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_masked_matrix.py -> build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_multiarray.py -> build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_regression.py -> build/lib.macosx-11.0-arm64-3.9/numpy/matrixlib/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/polynomial
copying numpy/polynomial/laguerre.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial
copying numpy/polynomial/_polybase.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial
copying numpy/polynomial/polyutils.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial
copying numpy/polynomial/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial
copying numpy/polynomial/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial
copying numpy/polynomial/hermite_e.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial
copying numpy/polynomial/chebyshev.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial
copying numpy/polynomial/polynomial.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial
copying numpy/polynomial/legendre.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial
copying numpy/polynomial/hermite.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial
creating build/lib.macosx-11.0-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_chebyshev.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_hermite_e.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_polynomial.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_laguerre.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_legendre.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_printing.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_hermite.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_classes.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_polyutils.py -> build/lib.macosx-11.0-arm64-3.9/numpy/polynomial/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/random
copying numpy/random/_pickle.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random
copying numpy/random/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random
copying numpy/random/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random
creating build/lib.macosx-11.0-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_generator_mt19937.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_randomstate.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_direct.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_extending.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random/tests
copying numpy/random/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_smoke.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_randomstate_regression.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_seed_sequence.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_generator_mt19937_regressions.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_random.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_regression.py -> build/lib.macosx-11.0-arm64-3.9/numpy/random/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/testing
copying numpy/testing/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing
copying numpy/testing/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing
copying numpy/testing/utils.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing
copying numpy/testing/print_coercion_tables.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing
creating build/lib.macosx-11.0-arm64-3.9/numpy/testing/_private
copying numpy/testing/_private/nosetester.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing/_private
copying numpy/testing/_private/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing/_private
copying numpy/testing/_private/noseclasses.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing/_private
copying numpy/testing/_private/utils.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing/_private
copying numpy/testing/_private/parameterized.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing/_private
copying numpy/testing/_private/decorators.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing/_private
creating build/lib.macosx-11.0-arm64-3.9/numpy/testing/tests
copying numpy/testing/tests/test_utils.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing/tests
copying numpy/testing/tests/test_decorators.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing/tests
copying numpy/testing/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing/tests
copying numpy/testing/tests/test_doctesting.py -> build/lib.macosx-11.0-arm64-3.9/numpy/testing/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/typing
copying numpy/typing/_callable.py -> build/lib.macosx-11.0-arm64-3.9/numpy/typing
copying numpy/typing/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/typing
copying numpy/typing/_dtype_like.py -> build/lib.macosx-11.0-arm64-3.9/numpy/typing
copying numpy/typing/setup.py -> build/lib.macosx-11.0-arm64-3.9/numpy/typing
copying numpy/typing/_array_like.py -> build/lib.macosx-11.0-arm64-3.9/numpy/typing
copying numpy/typing/_scalars.py -> build/lib.macosx-11.0-arm64-3.9/numpy/typing
copying numpy/typing/_shape.py -> build/lib.macosx-11.0-arm64-3.9/numpy/typing
copying numpy/typing/_add_docstring.py -> build/lib.macosx-11.0-arm64-3.9/numpy/typing
creating build/lib.macosx-11.0-arm64-3.9/numpy/typing/tests
copying numpy/typing/tests/test_isfile.py -> build/lib.macosx-11.0-arm64-3.9/numpy/typing/tests
copying numpy/typing/tests/test_typing.py -> build/lib.macosx-11.0-arm64-3.9/numpy/typing/tests
copying numpy/typing/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/typing/tests
creating build/lib.macosx-11.0-arm64-3.9/numpy/tests
copying numpy/tests/test_warnings.py -> build/lib.macosx-11.0-arm64-3.9/numpy/tests
copying numpy/tests/test_matlib.py -> build/lib.macosx-11.0-arm64-3.9/numpy/tests
copying numpy/tests/test_ctypeslib.py -> build/lib.macosx-11.0-arm64-3.9/numpy/tests
copying numpy/tests/test_numpy_version.py -> build/lib.macosx-11.0-arm64-3.9/numpy/tests
copying numpy/tests/__init__.py -> build/lib.macosx-11.0-arm64-3.9/numpy/tests
copying numpy/tests/test_reloading.py -> build/lib.macosx-11.0-arm64-3.9/numpy/tests
copying numpy/tests/test_public_api.py -> build/lib.macosx-11.0-arm64-3.9/numpy/tests
copying numpy/tests/test_scripts.py -> build/lib.macosx-11.0-arm64-3.9/numpy/tests
warning: build_py: byte-compiling is disabled, skipping.

running build_clib
customize UnixCCompiler
customize UnixCCompiler using new_build_clib
CCompilerOpt.cc_test_flags[999] : testing flags (-march=native)
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

creating /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private
creating /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var
creating /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders
creating /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders/lf
creating /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn
creating /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T
creating /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c
creating /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a
creating /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy
creating /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils
creating /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks
compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-march=native'
CCompilerOpt.dist_test[576] : CCompilerOpt._dist_test_spawn[711] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c /private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks/test_flags.c -o /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks/test_flags.o -MMD -MF /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks/test_flags.o.d -march=native) failed with exit status 1 output ->
clang: error: the clang compiler does not support '-march=native'

CCompilerOpt.cc_test_flags[1003] : testing failed
CCompilerOpt.cc_test_flags[999] : testing flags (-O3)
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-O3'
CCompilerOpt.cc_test_flags[999] : testing flags (-Werror)
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-Werror'
CCompilerOpt.__init__[1674] : check requested baseline
CCompilerOpt.feature_test[1444] : testing feature 'NEON_FP16' with flags ()
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-Werror'
CCompilerOpt.feature_test[1444] : testing feature 'NEON' with flags ()
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-Werror'
CCompilerOpt.feature_test[1444] : testing feature 'ASIMD' with flags ()
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-Werror'
CCompilerOpt.feature_test[1444] : testing feature 'NEON_VFPV4' with flags ()
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-Werror'
CCompilerOpt.__init__[1683] : check requested dispatch-able features
CCompilerOpt.cc_test_flags[999] : testing flags (-march=armv8.2-a+fp16)
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-march=armv8.2-a+fp16'
CCompilerOpt.feature_test[1444] : testing feature 'ASIMDHP' with flags (-march=armv8.2-a+fp16)
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-march=armv8.2-a+fp16 -Werror'
CCompilerOpt.cc_test_flags[999] : testing flags (-march=armv8.2-a+fp16fml)
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-march=armv8.2-a+fp16fml'
CCompilerOpt.feature_test[1444] : testing feature 'ASIMDFHM' with flags (-march=armv8.2-a+fp16+fp16fml)
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-march=armv8.2-a+fp16+fp16fml -Werror'
CCompilerOpt.dist_test[576] : CCompilerOpt._dist_test_spawn[711] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c /private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks/cpu_asimdfhm.c -o /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks/cpu_asimdfhm.o -MMD -MF /var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/tmpzfhudp5d/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks/cpu_asimdfhm.o.d -march=armv8.2-a+fp16+fp16fml -Werror) failed with exit status 1 output ->
/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks/cpu_asimdfhm.c:13:35: error: implicit declaration of function 'vfmlal_low_u32' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
    int ret  = (int)vget_lane_f32(vfmlal_low_u32(vlf, vlhp, vlhp), 0);
                                  ^
/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks/cpu_asimdfhm.c:13:35: note: did you mean 'vfmlal_low_f16'?
/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/arm_neon.h:37402:18: note: 'vfmlal_low_f16' declared here
__ai float32x2_t vfmlal_low_f16(float32x2_t __p0, float16x4_t __p1, float16x4_t __p2) {
                 ^
/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks/cpu_asimdfhm.c:13:21: error: initializing 'float32x2_t' (vector of 2 'float32_t' values) with an expression of incompatible type 'int'
    int ret  = (int)vget_lane_f32(vfmlal_low_u32(vlf, vlhp, vlhp), 0);
                    ^             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/arm_neon.h:6496:15: note: expanded from macro 'vget_lane_f32'
  float32x2_t __s0 = __p0; \
              ^      ~~~~
/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks/cpu_asimdfhm.c:14:36: error: implicit declaration of function 'vfmlslq_high_u32' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
        ret += (int)vgetq_lane_f32(vfmlslq_high_u32(vf, vhp, vhp), 0);
                                   ^
/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks/cpu_asimdfhm.c:14:36: note: did you mean 'vmlsl_high_u32'?
/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/arm_neon.h:62610:17: note: 'vmlsl_high_u32' declared here
__ai uint64x2_t vmlsl_high_u32(uint64x2_t __p0, uint32x4_t __p1, uint32x4_t __p2) {
                ^
/private/var/folders/lf/2v_lshfd6411zrk07w4_kf2c0000gn/T/pip-install-pht5s16c/numpy_07201f26c01c491993ee3b6be7b10d4a/numpy/distutils/checks/cpu_asimdfhm.c:14:21: error: initializing 'float32x4_t' (vector of 4 'float32_t' values) with an expression of incompatible type 'int'
        ret += (int)vgetq_lane_f32(vfmlslq_high_u32(vf, vhp, vhp), 0);
                    ^              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/arm_neon.h:6306:15: note: expanded from macro 'vgetq_lane_f32'
  float32x4_t __s0 = __p0; \
              ^      ~~~~
4 errors generated.

CCompilerOpt.feature_test[1458] : testing failed
CCompilerOpt.cc_test_flags[999] : testing flags (-march=armv8.2-a+dotprod)
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-march=armv8.2-a+dotprod'
CCompilerOpt.feature_test[1444] : testing feature 'ASIMDDP' with flags (-march=armv8.2-a+dotprod)
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-march=armv8.2-a+dotprod -Werror'
CCompilerOpt.__init__[1695] : skip features (NEON_VFPV4 NEON_FP16 NEON ASIMD) since its part of baseline
CCompilerOpt.__init__[1699] : initialize targets groups
CCompilerOpt.__init__[1701] : parse target group simd_test
CCompilerOpt._parse_target_tokens[1910] : skip targets (AVX512F FMA4 (FMA3 AVX2) VSX VSX2 VSX3 SSE42 XOP AVX512_SKX SSE2) not part of baseline or dispatch-able features
CCompilerOpt._parse_policy_not_keepbase[2022] : skip baseline features (ASIMD)
CCompilerOpt.generate_dispatch_header[2236] : generate CPU dispatch header: (build/src.macosx-11.0-arm64-3.9/numpy/distutils/include/npy_cpu_dispatch_config.h)
CCompilerOpt.generate_dispatch_header[2245] : dispatch header dir build/src.macosx-11.0-arm64-3.9/numpy/distutils/include does not exist, creating it
Detected changes on compiler optimizations, force rebuilding
building 'npymath' library
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

creating build/temp.macosx-11.0-arm64-3.9
creating build/temp.macosx-11.0-arm64-3.9/numpy
creating build/temp.macosx-11.0-arm64-3.9/numpy/core
creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src
creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src/npymath
creating build/temp.macosx-11.0-arm64-3.9/build
creating build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9
creating build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy
creating build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core
creating build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src
creating build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath
compile options: '-Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath/ieee754.c
clang: numpy/core/src/npymath/npy_math.c
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath/npy_math_complex.c
clang: numpy/core/src/npymath/halffloat.c
In file included from numpy/core/src/npymath/npy_math.c:9:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
ar: adding 4 object files to build/temp.macosx-11.0-arm64-3.9/libnpymath.a
ranlib:@ build/temp.macosx-11.0-arm64-3.9/libnpymath.a
building 'npyrandom' library
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

creating build/temp.macosx-11.0-arm64-3.9/numpy/random
creating build/temp.macosx-11.0-arm64-3.9/numpy/random/src
creating build/temp.macosx-11.0-arm64-3.9/numpy/random/src/distributions
compile options: '-Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: numpy/random/src/distributions/logfactorial.c
clang: numpy/random/src/distributions/distributions.c
clang: numpy/random/src/distributions/random_mvhg_count.c
clang: numpy/random/src/distributions/random_mvhg_marginals.c
clang: numpy/random/src/distributions/random_hypergeometric.c
ar: adding 5 object files to build/temp.macosx-11.0-arm64-3.9/libnpyrandom.a
ranlib:@ build/temp.macosx-11.0-arm64-3.9/libnpyrandom.a
running build_ext
customize UnixCCompiler
customize UnixCCompiler using new_build_ext
CCompilerOpt.__init__[781] : hit the memory cache
CCompilerOpt.generate_dispatch_header[2236] : generate CPU dispatch header: (build/src.macosx-11.0-arm64-3.9/numpy/distutils/include/npy_cpu_dispatch_config.h)
Detected changes on compiler optimizations, force rebuilding
building 'numpy.core._multiarray_tests' extension
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

creating build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray
creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common
compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/_multiarray_tests.c
clang: numpy/core/src/common/mem_overlap.c
In file included from numpy/core/src/multiarray/_multiarray_tests.c.src:7:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
numpy/core/src/multiarray/_multiarray_tests.c.src:2076:61: warning: format specifies type 'long double' but the argument has type 'npy_longdouble' (aka 'double') [-Wformat]
        PyOS_snprintf(str, sizeof(str), "%.*Lg", precision, x);
                                         ~~~~~              ^
                                         %.*g
2 warnings generated.
clang -bundle -undefined dynamic_lookup -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -arch arm64 build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/_multiarray_tests.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/mem_overlap.o -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpymath -o build/lib.macosx-11.0-arm64-3.9/numpy/core/_multiarray_tests.cpython-39-darwin.so
building 'numpy.core._multiarray_umath' extension
compiling C dispatch-able sources
CCompilerOpt.parse_targets[1741] : looking for '@targets' inside ->  build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops_unary_fp.dispatch.c
CCompilerOpt._parse_target_tokens[1910] : skip targets (VSX2 SSE2) not part of baseline or dispatch-able features
CCompilerOpt._parse_policy_not_keepbase[2022] : skip baseline features (NEON)
CCompilerOpt._parse_target_tokens[1934] : policy 'MAXOPT' is ON
CCompilerOpt._parse_policy_maxopt[2043] : debug mode is detected, policy 'maxopt' is skipped.
CCompilerOpt._generate_config[2469] : generate dispatched config ->  build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops_unary_fp.dispatch.h
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

creating build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath
compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/umath -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops_unary_fp.dispatch.c
In file included from numpy/core/src/umath/loops_unary_fp.dispatch.c.src:12:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray
creating build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort
creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath
creating build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/common
compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/umath -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/arraytypes.c
clang: numpy/core/src/multiarray/array_assign_scalar.c
clang: numpy/core/src/multiarray/buffer.c
clang: numpy/core/src/multiarray/conversion_utils.c
clang: numpy/core/src/multiarray/datetime_strings.c
clang: numpy/core/src/multiarray/common.c
clang: numpy/core/src/multiarray/abstractdtypes.c
clang: numpy/core/src/multiarray/descriptor.c
In file included from numpy/core/src/multiarray/arraytypes.c.src:16:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
clang: numpy/core/src/multiarray/alloc.c
clang: numpy/core/src/multiarray/array_assign_array.c
clang: numpy/core/src/multiarray/convert.c
clang: numpy/core/src/multiarray/ctors.c
clang: numpy/core/src/multiarray/datetime_busday.c
clang: numpy/core/src/multiarray/arrayobject.c
clang: numpy/core/src/multiarray/calculation.c
clang: numpy/core/src/multiarray/arrayfunction_override.c
In file included from numpy/core/src/multiarray/ctors.c:10:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
clang: numpy/core/src/multiarray/convert_datatype.c
clang: numpy/core/src/multiarray/dtypemeta.c
In file included from numpy/core/src/multiarray/convert_datatype.c:13:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
clang: numpy/core/src/multiarray/datetime_busdaycal.c
numpy/core/src/multiarray/convert_datatype.c:233:9: warning: comparison of nonnull parameter 'dtype' equal to a null pointer is 'false' on first encounter [-Wtautological-pointer-compare]
    if (dtype == NULL) {
        ^~~~~    ~~~~
build/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy/__multiarray_api.h:112:40: note: declared 'nonnull' here
NPY_NO_EXPORT NPY_STEALS_REF_TO_ARG(2) NPY_GCC_NONNULL(2) PyObject * PyArray_CastToType \
                                       ^
numpy/core/include/numpy/npy_common.h:79:43: note: expanded from macro 'NPY_GCC_NONNULL'
#define NPY_GCC_NONNULL(n) __attribute__((nonnull(n)))
                                          ^
clang: numpy/core/src/multiarray/dtype_transfer.c
clang: numpy/core/src/multiarray/compiled_base.c
clang: numpy/core/src/multiarray/dragon4.c
In file included from numpy/core/src/multiarray/compiled_base.c:9:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
clang: numpy/core/src/multiarray/flagsobject.c
clang: numpy/core/src/multiarray/item_selection.c
1 warning generated.
clang: numpy/core/src/multiarray/datetime.c
2 warnings generated.
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/lowlevel_strided_loops.c
In file included from numpy/core/src/multiarray/item_selection.c:10:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
In file included from numpy/core/src/multiarray/lowlevel_strided_loops.c.src:18:
In file included from numpy/core/include/numpy/halffloat.h:5:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
clang: numpy/core/src/multiarray/getset.c
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/einsum.c
1 warning generated.
clang: numpy/core/src/multiarray/multiarraymodule.c
numpy/core/src/multiarray/einsum.c.src:408:32: warning: unknown warning group '-Wmaybe-uninitialized', ignored [-Wunknown-warning-option]
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
                               ^
clang: numpy/core/src/multiarray/nditer_constr.c
In file included from numpy/core/src/multiarray/multiarraymodule.c:28:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
clang: numpy/core/src/multiarray/hashdescr.c
clang: numpy/core/src/multiarray/refcount.c
1 warning generated.
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/einsum_sumprod.c
1 warning generated.
clang: numpy/core/src/multiarray/iterators.c
clang: numpy/core/src/multiarray/scalarapi.c
In file included from numpy/core/src/multiarray/einsum_sumprod.c.src:16:
In file included from numpy/core/include/numpy/halffloat.h:5:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
In file included from numpy/core/src/multiarray/scalarapi.c:10:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
clang: numpy/core/src/multiarray/sequence.c
1 warning generated.
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/scalartypes.c
clang: numpy/core/src/multiarray/shape.c
In file included from numpy/core/src/multiarray/scalartypes.c.src:12:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
In file included from numpy/core/src/multiarray/shape.c:10:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
clang: numpy/core/src/multiarray/legacy_dtype_implementation.c
clang: numpy/core/src/multiarray/nditer_pywrap.c
1 warning generated.
clang: numpy/core/src/multiarray/temp_elide.c
clang: numpy/core/src/multiarray/vdot.c
clang: numpy/core/src/multiarray/typeinfo.c
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/quicksort.c
1 warning generated.
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/nditer_templ.c
clang: numpy/core/src/multiarray/number.c
clang: numpy/core/src/multiarray/usertypes.c
1 warning generated.
clang: numpy/core/src/multiarray/strfuncs.c
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/timsort.c
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/selection.c
clang: numpy/core/src/umath/reduction.c
In file included from numpy/core/src/npysort/selection.c.src:21:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
In file included from numpy/core/src/umath/reduction.c:22:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops.c
1 warning generated.
clang: numpy/core/src/multiarray/array_coercion.c
In file included from numpy/core/src/umath/loops.c.src:12:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
clang: numpy/core/src/multiarray/nditer_api.c
clang: numpy/core/src/multiarray/array_method.c
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/mergesort.c
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/clip.c
1 warning generated.
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/scalarmath.c
In file included from numpy/core/src/umath/clip.c.src:10:
In file included from numpy/core/include/numpy/halffloat.h:5:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
In file included from numpy/core/src/umath/scalarmath.c.src:16:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
clang: numpy/core/src/common/array_assign.c
clang: numpy/core/src/common/ucsnarrow.c
1 warning generated.
clang: numpy/core/src/umath/ufunc_object.c
clang: numpy/core/src/common/mem_overlap.c
In file included from numpy/core/src/common/ucsnarrow.c:11:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
clang: numpy/core/src/common/ufunc_override.c
In file included from numpy/core/src/umath/ufunc_object.c:37:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
clang: numpy/core/src/common/numpyos.c
1 warning generated.
clang: numpy/core/src/multiarray/mapping.c
clang: numpy/core/src/common/npy_longdouble.c
In file included from numpy/core/src/common/numpyos.c:10:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
In file included from numpy/core/src/common/npy_longdouble.c:7:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_cpu_features.c
1 warning generated.
1 warning generated.
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/binsearch.c
clang: numpy/core/src/multiarray/methods.c
1 warning generated.
clang: numpy/core/src/umath/extobj.c
1 warning generated.
clang: numpy/core/src/umath/ufunc_type_resolution.c
In file included from numpy/core/src/umath/extobj.c:12:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
clang: numpy/core/src/umath/umathmodule.c
In file included from numpy/core/src/umath/ufunc_type_resolution.c:23:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
In file included from numpy/core/src/umath/umathmodule.c:27:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
1 warning generated.
clang: numpy/core/src/umath/override.c
In file included from numpy/core/src/umath/override.c:5:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/heapsort.c
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/radixsort.c
1 warning generated.
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/matmul.c
In file included from numpy/core/src/umath/matmul.c.src:12:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
clang -bundle -undefined dynamic_lookup -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -arch arm64 build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops_unary_fp.dispatch.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/abstractdtypes.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/alloc.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/arrayobject.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/arraytypes.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/array_coercion.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/array_method.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/array_assign_scalar.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/array_assign_array.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/arrayfunction_override.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/buffer.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/calculation.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/compiled_base.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/common.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/convert.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/convert_datatype.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/conversion_utils.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/ctors.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/datetime.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/datetime_strings.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/datetime_busday.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/datetime_busdaycal.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/descriptor.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/dtypemeta.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/dragon4.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/dtype_transfer.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/einsum.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/einsum_sumprod.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/flagsobject.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/getset.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/hashdescr.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/item_selection.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/iterators.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/legacy_dtype_implementation.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/lowlevel_strided_loops.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/mapping.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/methods.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/multiarraymodule.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/nditer_templ.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/nditer_api.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/nditer_constr.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/nditer_pywrap.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/number.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/refcount.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/sequence.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/shape.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/scalarapi.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/scalartypes.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/strfuncs.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/temp_elide.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/typeinfo.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/usertypes.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/vdot.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/quicksort.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/mergesort.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/timsort.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/heapsort.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/radixsort.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/selection.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/npysort/binsearch.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/umathmodule.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/reduction.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/matmul.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/clip.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/ufunc_object.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/extobj.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/scalarmath.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/ufunc_type_resolution.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/override.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/array_assign.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/mem_overlap.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_longdouble.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/ucsnarrow.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/ufunc_override.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/numpyos.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_cpu_features.o -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpymath -o build/lib.macosx-11.0-arm64-3.9/numpy/core/_multiarray_umath.cpython-39-darwin.so
building 'numpy.core._umath_tests' extension
compiling C dispatch-able sources
CCompilerOpt.parse_targets[1741] : looking for '@targets' inside ->  numpy/core/src/umath/_umath_tests.dispatch.c
CCompilerOpt._parse_target_tokens[1910] : skip targets (SSE41 VSX3 AVX2 VSX VSX2 SSE2) not part of baseline or dispatch-able features
CCompilerOpt._parse_policy_not_keepbase[2022] : skip baseline features (ASIMD)
CCompilerOpt._parse_target_tokens[1934] : policy 'WERROR' is ON
CCompilerOpt._parse_policy_werror[2066] : compiler warnings are treated as errors
CCompilerOpt._generate_config[2469] : generate dispatched config ->  build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/_umath_tests.dispatch.h
CCompilerOpt._wrap_target[2432] : wrap dispatch-able target ->  build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/_umath_tests.dispatch.asimdhp.c
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/umath -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-Werror -march=armv8.2-a+fp16'
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/_umath_tests.dispatch.asimdhp.c
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/umath -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-Werror'
clang: numpy/core/src/umath/_umath_tests.dispatch.c
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/umath -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/_umath_tests.c
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_cpu_features.c
In file included from numpy/core/src/umath/_umath_tests.c.src:12:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
clang -bundle -undefined dynamic_lookup -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -arch arm64 build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/_umath_tests.dispatch.asimdhp.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/_umath_tests.dispatch.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/_umath_tests.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_cpu_features.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o build/lib.macosx-11.0-arm64-3.9/numpy/core/_umath_tests.cpython-39-darwin.so
building 'numpy.core._rational_tests' extension
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/_rational_tests.c
In file included from numpy/core/src/umath/_rational_tests.c.src:8:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
clang -bundle -undefined dynamic_lookup -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -arch arm64 build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/_rational_tests.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o build/lib.macosx-11.0-arm64-3.9/numpy/core/_rational_tests.cpython-39-darwin.so
building 'numpy.core._struct_ufunc_tests' extension
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/_struct_ufunc_tests.c
In file included from numpy/core/src/umath/_struct_ufunc_tests.c.src:6:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
clang -bundle -undefined dynamic_lookup -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -arch arm64 build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/_struct_ufunc_tests.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o build/lib.macosx-11.0-arm64-3.9/numpy/core/_struct_ufunc_tests.cpython-39-darwin.so
building 'numpy.core._operand_flag_tests' extension
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/_operand_flag_tests.c
In file included from numpy/core/src/umath/_operand_flag_tests.c.src:5:
In file included from numpy/core/include/numpy/ufuncobject.h:4:
In file included from numpy/core/include/numpy/npy_math.h:594:
numpy/core/src/npymath/npy_math_internal.h.src:539:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
clang -bundle -undefined dynamic_lookup -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -arch arm64 build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/umath/_operand_flag_tests.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o build/lib.macosx-11.0-arm64-3.9/numpy/core/_operand_flag_tests.cpython-39-darwin.so
building 'numpy.core._simd' extension
compiling C dispatch-able sources
CCompilerOpt.parse_targets[1741] : looking for '@targets' inside ->  build/src.macosx-11.0-arm64-3.9/numpy/core/src/_simd/_simd.dispatch.c
CCompilerOpt._parse_target_tokens[1934] : policy 'WERROR' is ON
CCompilerOpt._parse_policy_werror[2066] : compiler warnings are treated as errors
CCompilerOpt._generate_config[2469] : generate dispatched config ->  build/src.macosx-11.0-arm64-3.9/numpy/core/src/_simd/_simd.dispatch.h
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

creating build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/_simd
compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/_simd -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-Werror'
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/_simd/_simd.dispatch.c
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src/_simd
compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/_simd -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: numpy/core/src/_simd/_simd.c
clang: build/src.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_cpu_features.c
clang -bundle -undefined dynamic_lookup -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -arch arm64 build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/_simd/_simd.dispatch.o build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_cpu_features.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/_simd/_simd.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o build/lib.macosx-11.0-arm64-3.9/numpy/core/_simd.cpython-39-darwin.so
building 'numpy.fft._pocketfft_internal' extension
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

creating build/temp.macosx-11.0-arm64-3.9/numpy/fft
compile options: '-Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: numpy/fft/_pocketfft.c
clang -bundle -undefined dynamic_lookup -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/fft/_pocketfft.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o build/lib.macosx-11.0-arm64-3.9/numpy/fft/_pocketfft_internal.cpython-39-darwin.so
building 'numpy.linalg.lapack_lite' extension
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

creating build/temp.macosx-11.0-arm64-3.9/numpy/linalg
creating build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite
compile options: '-DHAVE_BLAS_ILP64 -DBLAS_SYMBOL_SUFFIX=64_ -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: numpy/linalg/lapack_litemodule.c
clang: numpy/linalg/lapack_lite/f2c_z_lapack.c
clang: numpy/linalg/lapack_lite/f2c_d_lapack.c
clang: numpy/linalg/lapack_lite/f2c_s_lapack.c
clang: numpy/linalg/lapack_lite/f2c_lapack.c
clang: numpy/linalg/lapack_lite/python_xerbla.c
clang: numpy/linalg/lapack_lite/f2c_c_lapack.c
clang: numpy/linalg/lapack_lite/f2c_blas.c
clang: numpy/linalg/lapack_lite/f2c_config.c
clang: numpy/linalg/lapack_lite/f2c.c
clang -bundle -undefined dynamic_lookup -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -Wl,-rpath,/Users/foooooo/miniforge3/lib -L/Users/foooooo/miniforge3/lib -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_litemodule.o build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite/python_xerbla.o build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite/f2c_z_lapack.o build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite/f2c_c_lapack.o build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite/f2c_d_lapack.o build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite/f2c_s_lapack.o build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite/f2c_lapack.o build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite/f2c_blas.o build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite/f2c_config.o build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite/f2c.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o build/lib.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite.cpython-39-darwin.so
building 'numpy.linalg._umath_linalg' extension
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64 -fPIC -O2 -isystem /Users/foooooo/miniforge3/include -arch arm64

creating build/temp.macosx-11.0-arm64-3.9/build/src.macosx-11.0-arm64-3.9/numpy/linalg
compile options: '-DHAVE_BLAS_ILP64 -DBLAS_SYMBOL_SUFFIX=64_ -Inumpy/core/include -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Users/foooooo/.local/share/virtualenvs/test-yCfxzroB/include -I/Users/foooooo/miniforge3/include/python3.9 -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11.0-arm64-3.9/numpy/core/src/npymath -c'
clang: build/src.macosx-11.0-arm64-3.9/numpy/linalg/umath_linalg.c
numpy/linalg/umath_linalg.c.src:734:32: warning: unknown warning group '-Wmaybe-uninitialized', ignored [-Wunknown-warning-option]
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
                               ^
SmartC2016 commented 3 years ago

The workaround has worked for me on MacOS 11.2.3 which I have just installed/updated to.

palewire commented 3 years ago

I taught a pandas related MOOC last week, where I guided more than 75 students through installation with pipenv. This error, which was entirely new to me, was encountered by numerous members of the class. Thank you to everyone working on a fix. I can assure it will be appreciated by many.

wgroeneveld commented 3 years ago

The workaround has worked for me on MacOS 11.2.3 which I have just installed/updated to.

I'm on 11.2 with ARM64 and the workaround does NOT work here.

  1. installing pandas hangs with pipenv install pandas
  2. Installing numpy crashes using the same cannot build wheels fault.
gennaro-tedesco commented 3 years ago

Is anyone from the Pipenv team looking into this? I suppose by now there is enough evidence that this needs urgent fix: not to put on some more fire but this is becoming concerning.

KassiusKlay commented 3 years ago

I have the exact same issues, can't pipenv install pandas, numpy and some other packages. Other packages it works flawlessly

frostming commented 3 years ago

@gennaro-tedesco @KassiusKlay @palewire Can you kindly test the master branch to see if this issue still exists?

KassiusKlay commented 3 years ago

@gennaro-tedesco @KassiusKlay @palewire Can you kindly test the master branch to see if this issue still exists?

This is the error i get after running pipenv install numpy

ERROR: Could not build wheels for numpy which use PEP 517 and cannot be installed directly

boblannon commented 3 years ago

I ran into wheel discovery issues with vanilla pip install as well.

I followed advice here, which suggested upgrading pip itself: https://github.com/scipy/scipy/issues/13102#issuecomment-737009648

After upgradingpip to the 21.0.1, release, installing the same packages went fine. Running pip install allowed me to install pandas/numpy/scipy using wheel distributions (and without having to compile).

However, running pipenv install still ran into the same issues (not finding wheels), despite the fact that it was apparently using the up-to-date pip release.

mrpbennett commented 3 years ago

I am running into the same issues. Can't install pandas using pipenv. I get the following:

> pipenv run pip install --no-use-pep517 pandas
Loading .env environment variables...
Collecting pandas
  Downloading pandas-1.2.4.tar.gz (5.5 MB)
     |████████████████████████████████| 5.5 MB 873 kB/s 
    ERROR: Command errored out with exit status 1:
     command: /Users/paul/.local/share/virtualenvs/hcp365_dashboard-iyCyyTy3/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/pandas_fecb06468ee1462a8010f89dc0c5b2bd/setup.py'"'"'; __file__='"'"'/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/pandas_fecb06468ee1462a8010f89dc0c5b2bd/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-pip-egg-info-3f6hcjq1
         cwd: /private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/pandas_fecb06468ee1462a8010f89dc0c5b2bd/
    Complete output (5 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/pandas_fecb06468ee1462a8010f89dc0c5b2bd/setup.py", line 20, in <module>
        import numpy
    ModuleNotFoundError: No module named 'numpy'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/e8/81/f7be049fe887865200a0450b137f2c574647b9154503865502cfd720ab5d/pandas-1.2.4.tar.gz#sha256=649ecab692fade3cbfcf967ff936496b0cfba0af00a55dfaacd82bdda5cb2279 (from https://pypi.org/simple/pandas/) (requires-python:>=3.7.1). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Using cached pandas-1.2.3-cp39-cp39-macosx_11_0_arm64.whl
Collecting python-dateutil>=2.7.3
  Using cached python_dateutil-2.8.1-py2.py3-none-any.whl (227 kB)
Collecting pytz>=2017.3
  Using cached pytz-2021.1-py2.py3-none-any.whl (510 kB)
Collecting numpy>=1.16.5
  Downloading numpy-1.20.2.zip (7.8 MB)
     |████████████████████████████████| 7.8 MB 51.6 MB/s 
Requirement already satisfied: six>=1.5 in /Users/paul/.local/share/virtualenvs/hcp365_dashboard-iyCyyTy3/lib/python3.9/site-packages (from python-dateutil>=2.7.3->pandas) (1.15.0)
Building wheels for collected packages: numpy
  Building wheel for numpy (setup.py) ... error
  ERROR: Command errored out with exit status 1:
   command: /Users/paul/.local/share/virtualenvs/hcp365_dashboard-iyCyyTy3/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py'"'"'; __file__='"'"'/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-wheel-1xmcy8ow
       cwd: /private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/
  Complete output (32 lines):
  Running from numpy source directory.
  Cythonizing sources
  Processing numpy/random/_bounded_integers.pxd.in
  Processing numpy/random/_philox.pyx
  Traceback (most recent call last):
    File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/tools/cythonize.py", line 59, in process_pyx
      from Cython.Compiler.Version import version as cython_version
  ModuleNotFoundError: No module named 'Cython'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/tools/cythonize.py", line 235, in <module>
      main()
    File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/tools/cythonize.py", line 231, in main
      find_process_files(root_dir)
    File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/tools/cythonize.py", line 222, in find_process_files
      process(root_dir, fromfile, tofile, function, hash_db)
    File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/tools/cythonize.py", line 188, in process
      processor_function(fromfile, tofile)
    File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/tools/cythonize.py", line 64, in process_pyx
      raise OSError('Cython needs to be installed in Python as a module')
  OSError: Cython needs to be installed in Python as a module
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py", line 513, in <module>
      setup_package()
    File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py", line 493, in setup_package
      generate_cython()
    File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py", line 290, in generate_cython
      raise RuntimeError("Running cythonize failed!")
  RuntimeError: Running cythonize failed!
  ----------------------------------------
  ERROR: Failed building wheel for numpy
  Running setup.py clean for numpy
  ERROR: Command errored out with exit status 1:
   command: /Users/paul/.local/share/virtualenvs/hcp365_dashboard-iyCyyTy3/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py'"'"'; __file__='"'"'/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' clean --all
       cwd: /private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0
  Complete output (10 lines):
  Running from numpy source directory.

  `setup.py clean` is not supported, use one of the following instead:

    - `git clean -xdf` (cleans all files)
    - `git clean -Xdf` (cleans all versioned files, doesn't touch
                        files that aren't checked into the git repo)

  Add `--force` to your command to use it anyway if you must (unsupported).

  ----------------------------------------
  ERROR: Failed cleaning build dir for numpy
Failed to build numpy
Installing collected packages: pytz, python-dateutil, numpy, pandas
    Running setup.py install for numpy ... error
    ERROR: Command errored out with exit status 1:
     command: /Users/paul/.local/share/virtualenvs/hcp365_dashboard-iyCyyTy3/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py'"'"'; __file__='"'"'/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-record-4t7otijb/install-record.txt --single-version-externally-managed --compile --install-headers /Users/paul/.local/share/virtualenvs/hcp365_dashboard-iyCyyTy3/include/site/python3.9/numpy
         cwd: /private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/
    Complete output (41 lines):
    Running from numpy source directory.

    Note: if you need reliable uninstall behavior, then install
    with pip instead of using `setup.py install`:

      - `pip install .`       (from a git repo or downloaded source
                               release)
      - `pip install numpy`   (last NumPy release on PyPi)

    Cythonizing sources
    numpy/random/_bounded_integers.pxd.in has not changed
    Processing numpy/random/_philox.pyx
    Traceback (most recent call last):
      File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/tools/cythonize.py", line 59, in process_pyx
        from Cython.Compiler.Version import version as cython_version
    ModuleNotFoundError: No module named 'Cython'

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last):
      File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/tools/cythonize.py", line 235, in <module>
        main()
      File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/tools/cythonize.py", line 231, in main
        find_process_files(root_dir)
      File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/tools/cythonize.py", line 222, in find_process_files
        process(root_dir, fromfile, tofile, function, hash_db)
      File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/tools/cythonize.py", line 188, in process
        processor_function(fromfile, tofile)
      File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/tools/cythonize.py", line 64, in process_pyx
        raise OSError('Cython needs to be installed in Python as a module')
    OSError: Cython needs to be installed in Python as a module
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py", line 513, in <module>
        setup_package()
      File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py", line 493, in setup_package
        generate_cython()
      File "/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py", line 290, in generate_cython
        raise RuntimeError("Running cythonize failed!")
    RuntimeError: Running cythonize failed!
    ----------------------------------------
ERROR: Command errored out with exit status 1: /Users/paul/.local/share/virtualenvs/hcp365_dashboard-iyCyyTy3/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py'"'"'; __file__='"'"'/private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-install-bqphdnyh/numpy_217288709a414f079621a5af52b213b0/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/45/6dwwgy2x13166tqq3598sk280000gn/T/pip-record-4t7otijb/install-record.txt --single-version-externally-managed --compile --install-headers /Users/paul/.local/share/virtualenvs/hcp365_dashboard-iyCyyTy3/include/site/python3.9/numpy Check the logs for full command output.

I can install and have installed pandas via pip and can use this...But when trying to use a pipenv environment it just hangs.

frostming commented 3 years ago

I would like to know if it still exists on the master branch? Since I updated one of the packaging dependencies

KassiusKlay commented 3 years ago

I would like to know if it still exists on the master branch? Since I updated one of the packaging dependencies

Yes, still hangs on installing packages on master branch for me.

frostming commented 3 years ago

I would like to know if it still exists on the master branch? Since I updated one of the packaging dependencies

Yes, still hangs on installing packages on master branch for me.

No, I didn't mean hanging, I meant if the build still failed.

KassiusKlay commented 3 years ago

I would like to know if it still exists on the master branch? Since I updated one of the packaging dependencies

Yes, still hangs on installing packages on master branch for me.

No, I didn't mean hanging, I meant if the build still failed.

I canceled (CTRL + C) the installation of streamlit and this is pandas stuck for hours.

Screenshot 2021-04-26 at 16 35 00

mrpbennett commented 3 years ago

How is this coming along?

robbiejdunne commented 3 years ago

How is this coming along?

Still not working for me. I get the same with sklearn and scipy.

Just hangs for an age at "Installing build dependencies ... -" and then gives me a series of errors. Everything else seems to be fine.

mrpbennett commented 3 years ago

Same for me too, i can install anything but pandas via pipenv. Means I am going to have to use venv as i can install pandas via pip fine. When installing pandas via pipenv it just hangs :(

robbiejdunne commented 3 years ago

Same for me too, i can install anything but pandas via pipenv. Means I am going to have to use venv as i can install pandas via pip fine. When installing pandas via pipenv it just hangs :(

I can and have installed Pandas and used it in venv but sklearn refuses to install as does scipy. Very frustrating.

boblannon commented 3 years ago

people seem to be confusing this ticket with https://github.com/pypa/pipenv/issues/4651, which is about hanging on install. this ticket is specifically about pipenv not being able to find the appropriate wheel distributions of certain packages

boblannon commented 3 years ago

with the upgrade to pip@21.1.1 i'm now getting "Installation succeeded" for both numpy and scipy but then get an error on lock:

short version:

13:55 $ pipenv install numpy scipy
Installing numpy...
Adding numpy to Pipfile's [packages]...
✔ Installation Succeeded
Installing scipy...
Adding scipy to Pipfile's [packages]...
✔ Installation Succeeded
Pipfile.lock (571d6c) out of date, updating to (61680c)...
Locking [dev-packages] dependencies...
Locking [packages] dependencies...
Building requirements...
Resolving dependencies...
✘ Locking Failed!
ERROR:pip.subprocessor:Command errored out with exit status 1:
 command: /Users/robertlannon/.local/share/virtualenvs/v3duwa-pandera-query-rules-uau_Q-lP/bin/python /usr/local/Cellar/pipenv/2020.11.15/libexec/lib/python3.9/site-packages/pipenv/patched/notpip/_vendor/pep517/_in_process.py prepare_metadata_for_build_wheel /var/folders/56/_j56y3451rsgcwd5cjr5fgk40000gn/T/tmpzy0jys_4
     cwd: /private/var/folders/56/_j56y3451rsgcwd5cjr5fgk40000gn/T/pip-resolver-12p989a8/scipy
long version, including successful pandas install: 1. bare install ``` $ pipenv install --python=python3.8 Creating a virtualenv for this project... Pipfile: /Users/robertlannon/analyze/v3duwa-pandera-query-rules/Pipfile Using /Users/robertlannon/.pyenv/versions/3.8.6/bin/python3.8 (3.8.6) to create virtualenv... ⠏ Creating virtual environment...created virtual environment CPython3.8.6.final.0-64 in 578ms creator CPython3Posix(dest=/Users/robertlannon/.local/share/virtualenvs/v3duwa-pandera-query-rules-uau_Q-lP, clear=False, global=False) seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/Users/robertlannon/Library/Application Support/virtualenv) added seed packages: pip==21.0.1, setuptools==56.0.0, wheel==0.36.2 activators BashActivator,CShellActivator,FishActivator,PowerShellActivator,PythonActivator,XonshActivator ✔ Successfully created virtual environment! Virtualenv location: /Users/robertlannon/.local/share/virtualenvs/v3duwa-pandera-query-rules-uau_Q-lP Creating a Pipfile for this project... Pipfile.lock not found, creating... Locking [dev-packages] dependencies... Locking [packages] dependencies... Updated Pipfile.lock (db4242)! Installing dependencies from Pipfile.lock (db4242)... 🐍 ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 0/0 — 00:00:00 To activate this project's virtualenv, run pipenv shell. Alternatively, run a command inside the virtualenv with pipenv run. ``` 2. Start pipenv shell ``` 13:50 $ pipenv shell Launching subshell in virtual environment... . /Users/robertlannon/.local/share/virtualenvs/v3duwa-pandera-query-rules-uau_Q-lP/bin/activate p ``` 3. Update Pip to 21.1.1 ``` 13:51 $ pip install -U pip Requirement already satisfied: pip in /Users/robertlannon/.local/share/virtualenvs/v3duwa-pandera-query-rules-uau_Q-lP/lib/python3.8/site-packages (21.0.1) Collecting pip Using cached pip-21.1.1-py3-none-any.whl (1.5 MB) Installing collected packages: pip Attempting uninstall: pip Found existing installation: pip 21.0.1 Uninstalling pip-21.0.1: Successfully uninstalled pip-21.0.1 Successfully installed pip-21.1.1 ``` 4. Install pandas, no problem ``` 13:51 $ pipenv install pandas Installing pandas... Adding pandas to Pipfile's [packages]... ✔ Installation Succeeded Pipfile.lock (db4242) out of date, updating to (571d6c)... Locking [dev-packages] dependencies... Locking [packages] dependencies... Building requirements... Resolving dependencies... ✔ Success! Updated Pipfile.lock (571d6c)! Installing dependencies from Pipfile.lock (571d6c)... 🐍 ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 0/0 — 00:00:00 ``` 5. Install numpy & scipy, no wheel found ``` 13:55 $ pipenv install numpy scipy Installing numpy... Adding numpy to Pipfile's [packages]... ✔ Installation Succeeded Installing scipy... Adding scipy to Pipfile's [packages]... ✔ Installation Succeeded Pipfile.lock (571d6c) out of date, updating to (61680c)... Locking [dev-packages] dependencies... Locking [packages] dependencies... Building requirements... Resolving dependencies... ✘ Locking Failed! ERROR:pip.subprocessor:Command errored out with exit status 1: command: /Users/robertlannon/.local/share/virtualenvs/v3duwa-pandera-query-rules-uau_Q-lP/bin/python /usr/local/Cellar/pipenv/2020.11.15/libexec/lib/python3.9/site-packages/pipenv/patched/notpip/_vendor/pep517/_in_process.py prepare_metadata_for_build_wheel /var/folders/56/_j56y3451rsgcwd5cjr5fgk40000gn/T/tmpzy0jys_4 cwd: /private/var/folders/56/_j56y3451rsgcwd5cjr5fgk40000gn/T/pip-resolver-12p989a8/scipy Complete output (142 lines): setup.py:462: UserWarning: Unrecognized setuptools command ('dist_info --egg-base /private/var/folders/56/_j56y3451rsgcwd5cjr5fgk40000gn/T/pip-modern-metadata-4yuym90g'), proceeding with generating Cython sources and expanding templates warnings.warn("Unrecognized setuptools command ('{}'), proceeding with " Running from SciPy source directory. ``` ...yadda yadda compiler errors.
robbiejdunne commented 3 years ago

Screenshot 2021-05-12 at 22 45 19 This is my error

boblannon commented 3 years ago

oh there may actually be a workaround, according to this comment https://github.com/pypa/pipenv/issues/4564#issuecomment-829199591

whao commented 3 years ago

Still have this issue in the latest release. Failed when locking.

gennaro-tedesco commented 3 years ago

Apologies for being critical, but this is obviously not being looked at/fixed (6 months is a somewhat obscene amount of time for such an urgent case). At this point it would be great to even just have a confirmation from the development team that users ought to move away from pipenv (frankly I cannot just continue checking this thread every day or hack all sorts of workaround in production code).

nfx commented 3 years ago

this issue appeared after macOS BigSur update. Heavily manifests itself with numpy https://github.com/numpy/numpy/issues/17784

whao commented 3 years ago
➜  Python pipenv --python 3
Creating a virtualenv for this project...
Pipfile: /Users/whao/Developer/Python/Pipfile
Using /usr/local/bin/python3.9 (3.9.5) to create virtualenv...
⠦ Creating virtual environment...created virtual environment CPython3.9.5.final.0-64 in 355ms
  creator CPython3Posix(dest=/Users/whao/.local/share/virtualenvs/Python-G7ezAV7m, clear=False, no_vcs_ignore=False, global=False)
  seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/Users/whao/Library/Application Support/virtualenv)
    added seed packages: pip==21.1.2, setuptools==57.0.0, wheel==0.36.2
  activators BashActivator,CShellActivator,FishActivator,PowerShellActivator,PythonActivator,XonshActivator

✔ Successfully created virtual environment! 
Virtualenv location: /Users/whao/.local/share/virtualenvs/Python-G7ezAV7m
(Python) ➜  Python pip3 list           
Package    Version
---------- -------
pip        21.1.2
setuptools 57.0.0
wheel      0.36.2
(Python) ➜  Python pipenv install pandas                                                                                                                   
Installing pandas...
Adding pandas to Pipfile's [packages]...
✔ Installation Succeeded 
Pipfile.lock (be159f) out of date, updating to (c2bdec)...
Locking [dev-packages] dependencies...
Building requirements...
Resolving dependencies...
✔ Success! 
Locking [packages] dependencies...
Building requirements...
Resolving dependencies...
✘ Locking Failed! 
ERROR:pip.subprocessor:Command errored out with exit status 1:
  Traceback (most recent call last):
    File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/notpip/_vendor/pep517/_in_process.py", line 257, in <module>
      main()
    File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/notpip/_vendor/pep517/_in_process.py", line 240, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/notpip/_vendor/pep517/_in_process.py", line 181, in build_wheel
      return _build_backend().build_wheel(wheel_directory, config_settings,
    File "/private/var/folders/1x/57z8wg6935vbycw_s745vnt80000gn/T/pip-build-env-giu4uxqe/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 211, in build_wheel
      return self._build_with_temp_dir(['bdist_wheel'], '.whl',
    File "/private/var/folders/1x/57z8wg6935vbycw_s745vnt80000gn/T/pip-build-env-giu4uxqe/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 197, in _build_with_temp_dir
      self.run_setup()
    File "/private/var/folders/1x/57z8wg6935vbycw_s745vnt80000gn/T/pip-build-env-giu4uxqe/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 248, in run_setup
      super(_BuildMetaLegacyBackend,
    File "/private/var/folders/1x/57z8wg6935vbycw_s745vnt80000gn/T/pip-build-env-giu4uxqe/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 142, in run_setup
      exec(compile(code, __file__, 'exec'), locals())
    File "setup.py", line 513, in <module>
      setup_package()
    File "setup.py", line 505, in setup_package
      setup(**metadata)
    File "/private/var/folders/1x/57z8wg6935vbycw_s745vnt80000gn/T/pip-install-hxaxjnon/numpy/numpy/distutils/core.py", line 169, in setup
      return old_setup(**new_attr)
    File "/private/var/folders/1x/57z8wg6935vbycw_s745vnt80000gn/T/pip-build-env-giu4uxqe/overlay/lib/python3.9/site-packages/setuptools/__init__.py", line 165, in setup
      return distutils.core.setup(**attrs)
    File "/usr/local/Cellar/python@3.9/3.9.5/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/core.py", line 148, in setup
      dist.run_commands()
    File "/usr/local/Cellar/python@3.9/3.9.5/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/dist.py", line 966, in run_commands
      self.run_command(cmd)
    File "/usr/local/Cellar/python@3.9/3.9.5/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/dist.py", line 985, in run_command
      cmd_obj.run()
    File "/private/var/folders/1x/57z8wg6935vbycw_s745vnt80000gn/T/pip-build-env-giu4uxqe/overlay/lib/python3.9/site-packages/wheel/bdist_wheel.py", line 328, in run
      impl_tag, abi_tag, plat_tag = self.get_tag()
    File "/private/var/folders/1x/57z8wg6935vbycw_s745vnt80000gn/T/pip-build-env-giu4uxqe/overlay/lib/python3.9/site-packages/wheel/bdist_wheel.py", line 252, in get_tag
      plat_name = get_platform(self.bdist_dir)
    File "/private/var/folders/1x/57z8wg6935vbycw_s745vnt80000gn/T/pip-build-env-giu4uxqe/overlay/lib/python3.9/site-packages/wheel/bdist_wheel.py", line 48, in get_platform
      result = calculate_macosx_platform_tag(archive_root, result)
    File "/private/var/folders/1x/57z8wg6935vbycw_s745vnt80000gn/T/pip-build-env-giu4uxqe/overlay/lib/python3.9/site-packages/wheel/macosx_libfile.py", line 356, in calculate_macosx_platform_tag
      assert len(base_version) == 2
  AssertionError
  ----------------------------------------
  ERROR: Failed building wheel for numpy
Failed to build numpy
ERROR: Could not build wheels for numpy which use PEP 517 and cannot be installed directly
----------------------------------------
Traceback (most recent call last):
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/resolver.py", line 764, in <module>
    main()
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/resolver.py", line 758, in main
    _main(parsed.pre, parsed.clear, parsed.verbose, parsed.system, parsed.write,
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/resolver.py", line 741, in _main
    resolve_packages(pre, clear, verbose, system, write, requirements_dir, packages, dev)
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/resolver.py", line 702, in resolve_packages
    results, resolver = resolve(
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/resolver.py", line 684, in resolve
    return resolve_deps(
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/utils.py", line 1397, in resolve_deps
    results, hashes, markers_lookup, resolver, skipped = actually_resolve_deps(
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/utils.py", line 1110, in actually_resolve_deps
    resolver.resolve()
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/utils.py", line 825, in resolve
    results = self.resolver.resolve(max_rounds=environments.PIPENV_MAX_ROUNDS)
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/piptools/resolver.py", line 180, in resolve
    has_changed, best_matches = self._resolve_one_round()
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/piptools/resolver.py", line 268, in _resolve_one_round
    their_constraints.extend(self._iter_dependencies(best_match))
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/piptools/resolver.py", line 383, in _iter_dependencies
    dependencies = self.repository.get_dependencies(ireq)
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 229, in get_dependencies
    legacy_results = self.get_legacy_dependencies(ireq)
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 350, in get_legacy_dependencies
    results, ireq = self.resolve_reqs(
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 306, in resolve_reqs
    results = resolver._resolve_one(reqset, ireq)
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/notpip/_internal/legacy_resolve.py", line 339, in _resolve_one
    abstract_dist = self._get_abstract_dist_for(req_to_install)
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/notpip/_internal/legacy_resolve.py", line 287, in _get_abstract_dist_for
    abstract_dist = self.preparer.prepare_linked_requirement(req)
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/notpip/_internal/operations/prepare.py", line 508, in prepare_linked_requirement
    abstract_dist = _get_prepared_distribution(
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/notpip/_internal/operations/prepare.py", line 95, in _get_prepared_distribution
    abstract_dist.prepare_distribution_metadata(finder, build_isolation)
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/notpip/_internal/distributions/sdist.py", line 38, in prepare_distribution_metadata
    self._setup_isolation(finder)
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/notpip/_internal/distributions/sdist.py", line 66, in _setup_isolation
    self.req.build_env.install_requirements(
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/notpip/_internal/build_env.py", line 202, in install_requirements
    call_subprocess(args, spinner=spinner)
  File "/Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/notpip/_internal/utils/subprocess.py", line 242, in call_subprocess
    raise InstallationError(exc_msg)
pipenv.patched.notpip._internal.exceptions.InstallationError: Command errored out with exit status 1: /Users/whao/.local/share/virtualenvs/Python-G7ezAV7m/bin/python /Users/whao/Library/Python/3.9/lib/python/site-packages/pipenv/patched/notpip install --ignore-installed --no-user --prefix /private/var/folders/1x/57z8wg6935vbycw_s745vnt80000gn/T/pip-build-env-zk03c0xi/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- setuptools wheel 'Cython>=0.29.21,<3' 'numpy==1.16.5; python_version=='"'"'3.7'"'"' and platform_system!='"'"'AIX'"'"'' 'numpy==1.17.3; python_version=='"'"'3.8'"'"' and platform_system!='"'"'AIX'"'"'' 'numpy==1.16.5; python_version=='"'"'3.7'"'"' and platform_system=='"'"'AIX'"'"'' 'numpy==1.17.3; python_version=='"'"'3.8'"'"' and platform_system=='"'"'AIX'"'"'' 'numpy; python_version>='"'"'3.9'"'"'' Check the logs for full command output.
Yuri-MRQ commented 3 years ago

Any update on this issue? I got the same problem.

alibas01 commented 3 years ago

I could installed numpy and pandas. But I have a problem with scipy and seaborn.

Using cached scipy-1.6.3.tar.gz (27.2 MB) Installing build dependencies ... error ERROR: Command errored out with exit status 1: command: /opt/homebrew/opt/python@3.9/bin/python3.9 /private/tmp/pip-standalone-pip-cynapsi1/__env_pip__.zip/pip install --ignore-installed --no-user --prefix /private/tmp/pip-build-env-uvfri7je/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'wheel<0.37.0' 'setuptools<=51.0.0' 'Cython>=0.29.18,<3.0' 'pybind11>=2.4.3,<2.7.0' 'numpy==1.19.2; python_version=='"'"'3.6'"'"' and platform_machine=='"'"'aarch64'"'"'' 'numpy==1.19.2; python_version=='"'"'3.7'"'"' and platform_machine=='"'"'aarch64'"'"'' 'numpy==1.16.5; python_version=='"'"'3.6'"'"' and platform_machine!='"'"'aarch64'"'"' and platform_python_implementation != '"'"'PyPy'"'"'' 'numpy==1.16.5; python_version=='"'"'3.7'"'"' and platform_machine!='"'"'aarch64'"'"' and platform_python_implementation != '"'"'PyPy'"'"'' 'numpy==1.17.3; python_version=='"'"'3.8'"'"' and platform_machine!='"'"'aarch64'"'"' and platform_python_implementation != '"'"'PyPy'"'"'' 'numpy==1.19.3; python_version=='"'"'3.9'"'"' and platform_python_implementation != '"'"'PyPy'"'"'' 'numpy==1.19.0; python_version=='"'"'3.6'"'"' and platform_python_implementation=='"'"'PyPy'"'"'' 'numpy==1.20.0; python_version=='"'"'3.7'"'"' and platform_python_implementation=='"'"'PyPy'"'"'' 'numpy; python_version>='"'"'3.10'"'"'' 'numpy; python_version>='"'"'3.8'"'"' and platform_python_implementation=='"'"'PyPy'"'"'' cwd: None Complete output (925 lines): Ignoring numpy: markers 'python_version == "3.6" and platform_machine == "aarch64"' don't match your environment Ignoring numpy: markers 'python_version == "3.7" and platform_machine == "aarch64"' don't match your environment Ignoring numpy: markers 'python_version == "3.6" and platform_machine != "aarch64" and platform_python_implementation != "PyPy"' don't match your environment Ignoring numpy: markers 'python_version == "3.7" and platform_machine != "aarch64" and platform_python_implementation != "PyPy"' don't match your environment Ignoring numpy: markers 'python_version == "3.8" and platform_machine != "aarch64" and platform_python_implementation != "PyPy"' don't match your environment Ignoring numpy: markers 'python_version == "3.6" and platform_python_implementation == "PyPy"' don't match your environment Ignoring numpy: markers 'python_version == "3.7" and platform_python_implementation == "PyPy"' don't match your environment Ignoring numpy: markers 'python_version >= "3.10"' don't match your environment Ignoring numpy: markers 'python_version >= "3.8" and platform_python_implementation == "PyPy"' don't match your environment Collecting wheel<0.37.0 Using cached wheel-0.36.2-py2.py3-none-any.whl (35 kB) Collecting setuptools<=51.0.0 Using cached setuptools-51.0.0-py3-none-any.whl (785 kB) Collecting Cython<3.0,>=0.29.18 Using cached Cython-0.29.24-py2.py3-none-any.whl (979 kB) Collecting pybind11<2.7.0,>=2.4.3 Using cached pybind11-2.6.2-py2.py3-none-any.whl (191 kB) Collecting numpy==1.19.3 Using cached numpy-1.19.3.zip (7.3 MB) Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Preparing wheel metadata: started Preparing wheel metadata: finished with status 'done' Building wheels for collected packages: numpy Building wheel for numpy (PEP 517): started Building wheel for numpy (PEP 517): finished with status 'error' ERROR: Command errored out with exit status 1: command: /opt/homebrew/opt/python@3.9/bin/python3.9 /tmp/tmpcuwqvzfw_in_process.py build_wheel /tmp/tmpb3g6ced6 cwd: /private/tmp/pip-install-kcm69igy/numpy_c59ca3d9b9d54309afb56b2d020bd75b Complete output (889 lines): Running from numpy source directory. numpy/random/_bounded_integers.pxd.in has not changed numpy/random/_philox.pyx has not changed numpy/random/_bounded_integers.pyx.in has not changed numpy/random/_sfc64.pyx has not changed numpy/random/_mt19937.pyx has not changed numpy/random/bit_generator.pyx has not changed Processing numpy/random/_bounded_integers.pyx numpy/random/mtrand.pyx has not changed numpy/random/_generator.pyx has not changed numpy/random/_pcg64.pyx has not changed numpy/random/_common.pyx has not changed Cythonizing sources blas_opt_info: blas_mkl_info: customize UnixCCompiler libraries mkl_rt not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib'] NOT AVAILABLE

blis_info:
  libraries blis not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib']
  NOT AVAILABLE

openblas_info:
  libraries openblas not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib']
  NOT AVAILABLE

atlas_3_10_blas_threads_info:
Setting PTATLAS=ATLAS
  libraries tatlas not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib']
  NOT AVAILABLE

atlas_3_10_blas_info:
  libraries satlas not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib']
  NOT AVAILABLE

atlas_blas_threads_info:
Setting PTATLAS=ATLAS
  libraries ptf77blas,ptcblas,atlas not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib']
  NOT AVAILABLE

atlas_blas_info:
  libraries f77blas,cblas,atlas not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib']
  NOT AVAILABLE

accelerate_info:
  libraries accelerate not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib']
Library accelerate was not found. Ignoring
  libraries veclib not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib']
Library veclib was not found. Ignoring
  FOUND:
    extra_compile_args = ['-faltivec', '-I/System/Library/Frameworks/vecLib.framework/Headers']
    extra_link_args = ['-Wl,-framework', '-Wl,Accelerate']
    define_macros = [('NO_ATLAS_INFO', 3), ('HAVE_CBLAS', None)]

  FOUND:
    extra_compile_args = ['-faltivec', '-I/System/Library/Frameworks/vecLib.framework/Headers']
    extra_link_args = ['-Wl,-framework', '-Wl,Accelerate']
    define_macros = [('NO_ATLAS_INFO', 3), ('HAVE_CBLAS', None)]

non-existing path in 'numpy/distutils': 'site.cfg'
lapack_opt_info:
lapack_mkl_info:
  libraries mkl_rt not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib']
  NOT AVAILABLE

openblas_lapack_info:
  libraries openblas not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib']
  NOT AVAILABLE

openblas_clapack_info:
  libraries openblas,lapack not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib']
  NOT AVAILABLE

flame_info:
  libraries flame not found in ['/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib', '/usr/lib', '/opt/local/lib']
  NOT AVAILABLE

atlas_3_10_threads_info:
Setting PTATLAS=ATLAS
  libraries lapack_atlas not found in /opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib
  libraries tatlas,tatlas not found in /opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib
  libraries lapack_atlas not found in /usr/lib
  libraries tatlas,tatlas not found in /usr/lib
  libraries lapack_atlas not found in /opt/local/lib
  libraries tatlas,tatlas not found in /opt/local/lib
<class 'numpy.distutils.system_info.atlas_3_10_threads_info'>
  NOT AVAILABLE

atlas_3_10_info:
  libraries lapack_atlas not found in /opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib
  libraries satlas,satlas not found in /opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib
  libraries lapack_atlas not found in /usr/lib
  libraries satlas,satlas not found in /usr/lib
  libraries lapack_atlas not found in /opt/local/lib
  libraries satlas,satlas not found in /opt/local/lib
<class 'numpy.distutils.system_info.atlas_3_10_info'>
  NOT AVAILABLE

atlas_threads_info:
Setting PTATLAS=ATLAS
  libraries lapack_atlas not found in /opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib
  libraries ptf77blas,ptcblas,atlas not found in /opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib
  libraries lapack_atlas not found in /usr/lib
  libraries ptf77blas,ptcblas,atlas not found in /usr/lib
  libraries lapack_atlas not found in /opt/local/lib
  libraries ptf77blas,ptcblas,atlas not found in /opt/local/lib
<class 'numpy.distutils.system_info.atlas_threads_info'>
  NOT AVAILABLE

atlas_info:
  libraries lapack_atlas not found in /opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib
  libraries f77blas,cblas,atlas not found in /opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib
  libraries lapack_atlas not found in /usr/lib
  libraries f77blas,cblas,atlas not found in /usr/lib
  libraries lapack_atlas not found in /opt/local/lib
  libraries f77blas,cblas,atlas not found in /opt/local/lib
<class 'numpy.distutils.system_info.atlas_info'>
  NOT AVAILABLE

  FOUND:
    extra_compile_args = ['-faltivec', '-I/System/Library/Frameworks/vecLib.framework/Headers']
    extra_link_args = ['-Wl,-framework', '-Wl,Accelerate']
    define_macros = [('NO_ATLAS_INFO', 3), ('HAVE_CBLAS', None)]

/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib/python3.9/distutils/dist.py:274: UserWarning: Unknown distribution option: 'define_macros'
  warnings.warn(msg)
running bdist_wheel
running build
running config_cc
unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
build_src
building py_modules sources
building library "npymath" sources
Could not locate executable gfortran
Could not locate executable f95
Could not locate executable f90
Could not locate executable f77
Could not locate executable xlf90
Could not locate executable xlf
Could not locate executable ifort
Could not locate executable ifc
Could not locate executable g77
Could not locate executable g95
Could not locate executable pgfortran
don't know how to compile Fortran code on platform 'posix'
  adding 'build/src.macosx-11-arm64-3.9/numpy/core/src/npymath' to include_dirs.
None - nothing done with h_files = ['build/src.macosx-11-arm64-3.9/numpy/core/src/npymath/npy_math_internal.h']
building library "npysort" sources
  adding 'build/src.macosx-11-arm64-3.9/numpy/core/src/common' to include_dirs.
None - nothing done with h_files = ['build/src.macosx-11-arm64-3.9/numpy/core/src/common/npy_sort.h', 'build/src.macosx-11-arm64-3.9/numpy/core/src/common/npy_partition.h', 'build/src.macosx-11-arm64-3.9/numpy/core/src/common/npy_binsearch.h']
building library "npyrandom" sources
building extension "numpy.core._multiarray_tests" sources
building extension "numpy.core._multiarray_umath" sources
  adding 'build/src.macosx-11-arm64-3.9/numpy/core/src/umath' to include_dirs.
  adding 'build/src.macosx-11-arm64-3.9/numpy/core/src/npymath' to include_dirs.
  adding 'build/src.macosx-11-arm64-3.9/numpy/core/src/common' to include_dirs.
numpy.core - nothing done with h_files = ['build/src.macosx-11-arm64-3.9/numpy/core/src/umath/funcs.inc', 'build/src.macosx-11-arm64-3.9/numpy/core/src/umath/simd.inc', 'build/src.macosx-11-arm64-3.9/numpy/core/src/umath/loops.h', 'build/src.macosx-11-arm64-3.9/numpy/core/src/umath/matmul.h', 'build/src.macosx-11-arm64-3.9/numpy/core/src/umath/clip.h', 'build/src.macosx-11-arm64-3.9/numpy/core/src/npymath/npy_math_internal.h', 'build/src.macosx-11-arm64-3.9/numpy/core/src/common/templ_common.h', 'build/src.macosx-11-arm64-3.9/numpy/core/include/numpy/config.h', 'build/src.macosx-11-arm64-3.9/numpy/core/include/numpy/_numpyconfig.h', 'build/src.macosx-11-arm64-3.9/numpy/core/include/numpy/__multiarray_api.h', 'build/src.macosx-11-arm64-3.9/numpy/core/include/numpy/__ufunc_api.h']
building extension "numpy.core._umath_tests" sources
building extension "numpy.core._rational_tests" sources
building extension "numpy.core._struct_ufunc_tests" sources
building extension "numpy.core._operand_flag_tests" sources
building extension "numpy.fft._pocketfft_internal" sources
building extension "numpy.linalg.lapack_lite" sources
building extension "numpy.linalg._umath_linalg" sources
building extension "numpy.random._mt19937" sources
building extension "numpy.random._philox" sources
building extension "numpy.random._pcg64" sources
building extension "numpy.random._sfc64" sources
building extension "numpy.random._common" sources
building extension "numpy.random.bit_generator" sources
building extension "numpy.random._generator" sources
building extension "numpy.random._bounded_integers" sources
building extension "numpy.random.mtrand" sources
building data_files sources
build_src: building npy-pkg config files
running build_py
creating build/lib.macosx-11-arm64-3.9
creating build/lib.macosx-11-arm64-3.9/numpy
copying numpy/conftest.py -> build/lib.macosx-11-arm64-3.9/numpy
copying numpy/version.py -> build/lib.macosx-11-arm64-3.9/numpy
copying numpy/_globals.py -> build/lib.macosx-11-arm64-3.9/numpy
copying numpy/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy
copying numpy/dual.py -> build/lib.macosx-11-arm64-3.9/numpy
copying numpy/_distributor_init.py -> build/lib.macosx-11-arm64-3.9/numpy
copying numpy/setup.py -> build/lib.macosx-11-arm64-3.9/numpy
copying numpy/ctypeslib.py -> build/lib.macosx-11-arm64-3.9/numpy
copying numpy/matlib.py -> build/lib.macosx-11-arm64-3.9/numpy
copying numpy/_pytesttester.py -> build/lib.macosx-11-arm64-3.9/numpy
copying build/src.macosx-11-arm64-3.9/numpy/__config__.py -> build/lib.macosx-11-arm64-3.9/numpy
creating build/lib.macosx-11-arm64-3.9/numpy/compat
copying numpy/compat/py3k.py -> build/lib.macosx-11-arm64-3.9/numpy/compat
copying numpy/compat/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/compat
copying numpy/compat/setup.py -> build/lib.macosx-11-arm64-3.9/numpy/compat
copying numpy/compat/_inspect.py -> build/lib.macosx-11-arm64-3.9/numpy/compat
creating build/lib.macosx-11-arm64-3.9/numpy/compat/tests
copying numpy/compat/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/compat/tests
copying numpy/compat/tests/test_compat.py -> build/lib.macosx-11-arm64-3.9/numpy/compat/tests
creating build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/umath.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/fromnumeric.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/_dtype.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/_add_newdocs.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/_methods.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/_internal.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/_string_helpers.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/multiarray.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/_asarray.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/records.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/setup_common.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/memmap.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/overrides.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/getlimits.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/_dtype_ctypes.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/defchararray.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/shape_base.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/machar.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/setup.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/numeric.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/function_base.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/einsumfunc.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/umath_tests.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/_ufunc_config.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/_exceptions.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/numerictypes.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/_type_aliases.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/cversions.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/arrayprint.py -> build/lib.macosx-11-arm64-3.9/numpy/core
copying numpy/core/code_generators/generate_numpy_api.py -> build/lib.macosx-11-arm64-3.9/numpy/core
creating build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_numerictypes.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_scalar_methods.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_scalarmath.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_item_selection.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_machar.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_unicode.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_arrayprint.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_scalarbuffer.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_indexerrors.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_print.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_half.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_mem_overlap.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_shape_base.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_deprecations.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_errstate.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_records.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_scalarinherit.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_indexing.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_umath.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_numeric.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_function_base.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_datetime.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test__exceptions.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_extint128.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_umath_complex.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/_locales.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_defchararray.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_conversion_utils.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_scalarprint.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_abc.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_ufunc.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_dtype.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_umath_accuracy.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_getlimits.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_einsum.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_api.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_longdouble.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_overrides.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_scalar_ctors.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_multiarray.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_memmap.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_nditer.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_cpu_features.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_protocols.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
copying numpy/core/tests/test_regression.py -> build/lib.macosx-11-arm64-3.9/numpy/core/tests
creating build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/unixccompiler.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/numpy_distribution.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/conv_template.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/cpuinfo.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/ccompiler.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/msvc9compiler.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/npy_pkg_config.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/misc_util.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/log.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/line_endings.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/lib2def.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/pathccompiler.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/system_info.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/core.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/exec_command.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/from_template.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/mingw32ccompiler.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/setup.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/extension.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/msvccompiler.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/intelccompiler.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying numpy/distutils/_shell_utils.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
copying build/src.macosx-11-arm64-3.9/numpy/distutils/__config__.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils
creating build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/build.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/config_compiler.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/build_ext.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/config.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/install_headers.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/build_py.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/build_src.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/sdist.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/build_scripts.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/bdist_rpm.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/install_clib.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/build_clib.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/autodist.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/egg_info.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/install.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/develop.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
copying numpy/distutils/command/install_data.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/command
creating build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/gnu.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/compaq.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/intel.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/none.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/nag.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/pg.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/ibm.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/sun.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/nv.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/lahey.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/g95.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/mips.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/hpux.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/environment.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/pathf95.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/absoft.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/vast.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/fcompiler
creating build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_system_info.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_mingw32ccompiler.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_from_template.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_fcompiler_intel.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_misc_util.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_fcompiler.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_shell_utils.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_exec_command.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_npy_pkg_config.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_fcompiler_nagfor.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
copying numpy/distutils/tests/test_fcompiler_gnu.py -> build/lib.macosx-11-arm64-3.9/numpy/distutils/tests
creating build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/misc.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/internals.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/creation.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/dispatch.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/constants.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/ufuncs.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/broadcasting.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/basics.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/subclassing.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/indexing.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/byteswapping.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/structured_arrays.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
copying numpy/doc/glossary.py -> build/lib.macosx-11-arm64-3.9/numpy/doc
creating build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/cfuncs.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/common_rules.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/crackfortran.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/cb_rules.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/rules.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/f2py2e.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/func2subr.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/__version__.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/diagnose.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/setup.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/capi_maps.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/f90mod_rules.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/f2py_testing.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/use_rules.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/auxfuncs.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
copying numpy/f2py/__main__.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py
creating build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_mixed.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_return_logical.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_assumed_shape.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_common.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_kind.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_array_from_pyobj.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_return_real.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/util.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_size.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_callback.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_string.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_quoted_character.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_parameter.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_semicolon_split.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_compile_function.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_block_docstring.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_return_integer.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_return_character.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_return_complex.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_crackfortran.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
copying numpy/f2py/tests/test_regression.py -> build/lib.macosx-11-arm64-3.9/numpy/f2py/tests
creating build/lib.macosx-11-arm64-3.9/numpy/fft
copying numpy/fft/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/fft
copying numpy/fft/setup.py -> build/lib.macosx-11-arm64-3.9/numpy/fft
copying numpy/fft/helper.py -> build/lib.macosx-11-arm64-3.9/numpy/fft
copying numpy/fft/_pocketfft.py -> build/lib.macosx-11-arm64-3.9/numpy/fft
creating build/lib.macosx-11-arm64-3.9/numpy/fft/tests
copying numpy/fft/tests/test_pocketfft.py -> build/lib.macosx-11-arm64-3.9/numpy/fft/tests
copying numpy/fft/tests/test_helper.py -> build/lib.macosx-11-arm64-3.9/numpy/fft/tests
copying numpy/fft/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/fft/tests
creating build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/_iotools.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/mixins.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/nanfunctions.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/recfunctions.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/histograms.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/scimath.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/_version.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/user_array.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/format.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/twodim_base.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/financial.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/index_tricks.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/npyio.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/shape_base.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/setup.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/stride_tricks.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/utils.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/arrayterator.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/function_base.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/arraysetops.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/arraypad.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/type_check.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/polynomial.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/_datasource.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
copying numpy/lib/ufunclike.py -> build/lib.macosx-11-arm64-3.9/numpy/lib
creating build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_type_check.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_utils.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_twodim_base.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_polynomial.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test__iotools.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_shape_base.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_ufunclike.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_index_tricks.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_arrayterator.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test__version.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_io.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_arraysetops.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_function_base.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_arraypad.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_mixins.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_packbits.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test__datasource.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_stride_tricks.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_financial.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_recfunctions.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_nanfunctions.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_format.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_histograms.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
copying numpy/lib/tests/test_regression.py -> build/lib.macosx-11-arm64-3.9/numpy/lib/tests
creating build/lib.macosx-11-arm64-3.9/numpy/linalg
copying numpy/linalg/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/linalg
copying numpy/linalg/setup.py -> build/lib.macosx-11-arm64-3.9/numpy/linalg
copying numpy/linalg/linalg.py -> build/lib.macosx-11-arm64-3.9/numpy/linalg
creating build/lib.macosx-11-arm64-3.9/numpy/linalg/tests
copying numpy/linalg/tests/test_linalg.py -> build/lib.macosx-11-arm64-3.9/numpy/linalg/tests
copying numpy/linalg/tests/test_deprecations.py -> build/lib.macosx-11-arm64-3.9/numpy/linalg/tests
copying numpy/linalg/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/linalg/tests
copying numpy/linalg/tests/test_build.py -> build/lib.macosx-11-arm64-3.9/numpy/linalg/tests
copying numpy/linalg/tests/test_regression.py -> build/lib.macosx-11-arm64-3.9/numpy/linalg/tests
creating build/lib.macosx-11-arm64-3.9/numpy/ma
copying numpy/ma/extras.py -> build/lib.macosx-11-arm64-3.9/numpy/ma
copying numpy/ma/testutils.py -> build/lib.macosx-11-arm64-3.9/numpy/ma
copying numpy/ma/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/ma
copying numpy/ma/core.py -> build/lib.macosx-11-arm64-3.9/numpy/ma
copying numpy/ma/bench.py -> build/lib.macosx-11-arm64-3.9/numpy/ma
copying numpy/ma/setup.py -> build/lib.macosx-11-arm64-3.9/numpy/ma
copying numpy/ma/timer_comparison.py -> build/lib.macosx-11-arm64-3.9/numpy/ma
copying numpy/ma/mrecords.py -> build/lib.macosx-11-arm64-3.9/numpy/ma
creating build/lib.macosx-11-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_old_ma.py -> build/lib.macosx-11-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_core.py -> build/lib.macosx-11-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_deprecations.py -> build/lib.macosx-11-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_subclassing.py -> build/lib.macosx-11-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_extras.py -> build/lib.macosx-11-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_mrecords.py -> build/lib.macosx-11-arm64-3.9/numpy/ma/tests
copying numpy/ma/tests/test_regression.py -> build/lib.macosx-11-arm64-3.9/numpy/ma/tests
creating build/lib.macosx-11-arm64-3.9/numpy/matrixlib
copying numpy/matrixlib/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/matrixlib
copying numpy/matrixlib/setup.py -> build/lib.macosx-11-arm64-3.9/numpy/matrixlib
copying numpy/matrixlib/defmatrix.py -> build/lib.macosx-11-arm64-3.9/numpy/matrixlib
creating build/lib.macosx-11-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_matrix_linalg.py -> build/lib.macosx-11-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_defmatrix.py -> build/lib.macosx-11-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_interaction.py -> build/lib.macosx-11-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_numeric.py -> build/lib.macosx-11-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_masked_matrix.py -> build/lib.macosx-11-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_multiarray.py -> build/lib.macosx-11-arm64-3.9/numpy/matrixlib/tests
copying numpy/matrixlib/tests/test_regression.py -> build/lib.macosx-11-arm64-3.9/numpy/matrixlib/tests
creating build/lib.macosx-11-arm64-3.9/numpy/polynomial
copying numpy/polynomial/laguerre.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial
copying numpy/polynomial/_polybase.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial
copying numpy/polynomial/polyutils.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial
copying numpy/polynomial/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial
copying numpy/polynomial/setup.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial
copying numpy/polynomial/hermite_e.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial
copying numpy/polynomial/chebyshev.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial
copying numpy/polynomial/polynomial.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial
copying numpy/polynomial/legendre.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial
copying numpy/polynomial/hermite.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial
creating build/lib.macosx-11-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_chebyshev.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_hermite_e.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_polynomial.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_laguerre.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_legendre.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_printing.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_hermite.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_classes.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial/tests
copying numpy/polynomial/tests/test_polyutils.py -> build/lib.macosx-11-arm64-3.9/numpy/polynomial/tests
creating build/lib.macosx-11-arm64-3.9/numpy/random
copying numpy/random/_pickle.py -> build/lib.macosx-11-arm64-3.9/numpy/random
copying numpy/random/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/random
copying numpy/random/setup.py -> build/lib.macosx-11-arm64-3.9/numpy/random
creating build/lib.macosx-11-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_generator_mt19937.py -> build/lib.macosx-11-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_randomstate.py -> build/lib.macosx-11-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_direct.py -> build/lib.macosx-11-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_extending.py -> build/lib.macosx-11-arm64-3.9/numpy/random/tests
copying numpy/random/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_smoke.py -> build/lib.macosx-11-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_randomstate_regression.py -> build/lib.macosx-11-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_seed_sequence.py -> build/lib.macosx-11-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_generator_mt19937_regressions.py -> build/lib.macosx-11-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_random.py -> build/lib.macosx-11-arm64-3.9/numpy/random/tests
copying numpy/random/tests/test_regression.py -> build/lib.macosx-11-arm64-3.9/numpy/random/tests
creating build/lib.macosx-11-arm64-3.9/numpy/testing
copying numpy/testing/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/testing
copying numpy/testing/setup.py -> build/lib.macosx-11-arm64-3.9/numpy/testing
copying numpy/testing/utils.py -> build/lib.macosx-11-arm64-3.9/numpy/testing
copying numpy/testing/print_coercion_tables.py -> build/lib.macosx-11-arm64-3.9/numpy/testing
creating build/lib.macosx-11-arm64-3.9/numpy/testing/_private
copying numpy/testing/_private/nosetester.py -> build/lib.macosx-11-arm64-3.9/numpy/testing/_private
copying numpy/testing/_private/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/testing/_private
copying numpy/testing/_private/noseclasses.py -> build/lib.macosx-11-arm64-3.9/numpy/testing/_private
copying numpy/testing/_private/utils.py -> build/lib.macosx-11-arm64-3.9/numpy/testing/_private
copying numpy/testing/_private/parameterized.py -> build/lib.macosx-11-arm64-3.9/numpy/testing/_private
copying numpy/testing/_private/decorators.py -> build/lib.macosx-11-arm64-3.9/numpy/testing/_private
creating build/lib.macosx-11-arm64-3.9/numpy/testing/tests
copying numpy/testing/tests/test_utils.py -> build/lib.macosx-11-arm64-3.9/numpy/testing/tests
copying numpy/testing/tests/test_decorators.py -> build/lib.macosx-11-arm64-3.9/numpy/testing/tests
copying numpy/testing/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/testing/tests
copying numpy/testing/tests/test_doctesting.py -> build/lib.macosx-11-arm64-3.9/numpy/testing/tests
creating build/lib.macosx-11-arm64-3.9/numpy/tests
copying numpy/tests/test_warnings.py -> build/lib.macosx-11-arm64-3.9/numpy/tests
copying numpy/tests/test_matlib.py -> build/lib.macosx-11-arm64-3.9/numpy/tests
copying numpy/tests/test_ctypeslib.py -> build/lib.macosx-11-arm64-3.9/numpy/tests
copying numpy/tests/test_numpy_version.py -> build/lib.macosx-11-arm64-3.9/numpy/tests
copying numpy/tests/__init__.py -> build/lib.macosx-11-arm64-3.9/numpy/tests
copying numpy/tests/test_reloading.py -> build/lib.macosx-11-arm64-3.9/numpy/tests
copying numpy/tests/test_public_api.py -> build/lib.macosx-11-arm64-3.9/numpy/tests
copying numpy/tests/test_scripts.py -> build/lib.macosx-11-arm64-3.9/numpy/tests
running build_clib
customize UnixCCompiler
customize UnixCCompiler using new_build_clib
building 'npymath' library
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk

creating build/temp.macosx-11-arm64-3.9
creating build/temp.macosx-11-arm64-3.9/numpy
creating build/temp.macosx-11-arm64-3.9/numpy/core
creating build/temp.macosx-11-arm64-3.9/numpy/core/src
creating build/temp.macosx-11-arm64-3.9/numpy/core/src/npymath
creating build/temp.macosx-11-arm64-3.9/build
creating build/temp.macosx-11-arm64-3.9/build/src.macosx-11-arm64-3.9
creating build/temp.macosx-11-arm64-3.9/build/src.macosx-11-arm64-3.9/numpy
creating build/temp.macosx-11-arm64-3.9/build/src.macosx-11-arm64-3.9/numpy/core
creating build/temp.macosx-11-arm64-3.9/build/src.macosx-11-arm64-3.9/numpy/core/src
creating build/temp.macosx-11-arm64-3.9/build/src.macosx-11-arm64-3.9/numpy/core/src/npymath
compile options: '-Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/npymath -Inumpy/core/include -Ibuild/src.macosx-11-arm64-3.9/numpy/core/include/numpy -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/opt/homebrew/include -I/opt/homebrew/opt/openssl@1.1/include -I/opt/homebrew/opt/sqlite/include -I/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/include/python3.9 -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/npymath -c'
clang: numpy/core/src/npymath/npy_math.c
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/npymath/ieee754.c
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/npymath/npy_math_complex.c
clang: numpy/core/src/npymath/halffloat.c
In file included from numpy/core/src/npymath/npy_math.c:9:
numpy/core/src/npymath/npy_math_internal.h.src:490:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
1 warning generated.
ar: adding 4 object files to build/temp.macosx-11-arm64-3.9/libnpymath.a
ranlib:@ build/temp.macosx-11-arm64-3.9/libnpymath.a
building 'npysort' library
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk

creating build/temp.macosx-11-arm64-3.9/build/src.macosx-11-arm64-3.9/numpy/core/src/npysort
compile options: '-Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/common -Inumpy/core/include -Ibuild/src.macosx-11-arm64-3.9/numpy/core/include/numpy -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/opt/homebrew/include -I/opt/homebrew/opt/openssl@1.1/include -I/opt/homebrew/opt/sqlite/include -I/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/include/python3.9 -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/npymath -c'
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/npysort/quicksort.c
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/npysort/mergesort.c
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/npysort/timsort.c
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/npysort/radixsort.c
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/npysort/heapsort.c
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/npysort/binsearch.c
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/npysort/selection.c
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
numpy/core/src/npysort/selection.c.src:328:9: warning: code will never be executed [-Wunreachable-code]
        npy_intp k;
        ^~~~~~~~~~~
numpy/core/src/npysort/selection.c.src:326:14: note: silence by adding parentheses to mark code as explicitly dead
    else if (0 && kth == num - 1) {
             ^
             /* DISABLES CODE */ ( )
22 warnings generated.
ar: adding 7 object files to build/temp.macosx-11-arm64-3.9/libnpysort.a
ranlib:@ build/temp.macosx-11-arm64-3.9/libnpysort.a
building 'npyrandom' library
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk

creating build/temp.macosx-11-arm64-3.9/numpy/random
creating build/temp.macosx-11-arm64-3.9/numpy/random/src
creating build/temp.macosx-11-arm64-3.9/numpy/random/src/distributions
compile options: '-Inumpy/core/include -Ibuild/src.macosx-11-arm64-3.9/numpy/core/include/numpy -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/opt/homebrew/include -I/opt/homebrew/opt/openssl@1.1/include -I/opt/homebrew/opt/sqlite/include -I/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/include/python3.9 -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/npymath -c'
clang: numpy/random/src/distributions/distributions.c
clang: numpy/random/src/distributions/logfactorial.c
clang: numpy/random/src/distributions/random_mvhg_count.c
clang: numpy/random/src/distributions/random_hypergeometric.c
clang: numpy/random/src/distributions/random_mvhg_marginals.c
ar: adding 5 object files to build/temp.macosx-11-arm64-3.9/libnpyrandom.a
ranlib:@ build/temp.macosx-11-arm64-3.9/libnpyrandom.a
running build_ext
customize UnixCCompiler
customize UnixCCompiler using new_build_ext
building 'numpy.core._multiarray_tests' extension
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk

creating build/temp.macosx-11-arm64-3.9/build/src.macosx-11-arm64-3.9/numpy/core/src/multiarray
creating build/temp.macosx-11-arm64-3.9/numpy/core/src/common
compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Inumpy/core/include -Ibuild/src.macosx-11-arm64-3.9/numpy/core/include/numpy -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/opt/homebrew/include -I/opt/homebrew/opt/openssl@1.1/include -I/opt/homebrew/opt/sqlite/include -I/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/include/python3.9 -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/npymath -c'
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/multiarray/_multiarray_tests.c
clang: numpy/core/src/common/mem_overlap.c
In file included from numpy/core/src/multiarray/_multiarray_tests.c.src:7:
In file included from numpy/core/include/numpy/npy_math.h:596:
numpy/core/src/npymath/npy_math_internal.h.src:490:21: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'double *') to parameter of type 'long double *' [-Wincompatible-pointer-types]
    return modfl(x, iptr);
                    ^~~~
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/math.h:394:52: note: passing argument to parameter here
extern long double modfl(long double, long double *);
                                                   ^
numpy/core/src/multiarray/_multiarray_tests.c.src:1895:61: warning: format specifies type 'long double' but the argument has type 'npy_longdouble' (aka 'double') [-Wformat]
        PyOS_snprintf(str, sizeof(str), "%.*Lg", precision, x);
                                         ~~~~~              ^
                                         %.*g
2 warnings generated.
clang -bundle -undefined dynamic_lookup -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk build/temp.macosx-11-arm64-3.9/build/src.macosx-11-arm64-3.9/numpy/core/src/multiarray/_multiarray_tests.o build/temp.macosx-11-arm64-3.9/numpy/core/src/common/mem_overlap.o -L/opt/homebrew/lib -L/opt/homebrew/opt/openssl@1.1/lib -L/opt/homebrew/opt/sqlite/lib -Lbuild/temp.macosx-11-arm64-3.9 -lnpymath -o build/lib.macosx-11-arm64-3.9/numpy/core/_multiarray_tests.cpython-39-darwin.so
building 'numpy.core._multiarray_umath' extension
compiling C sources
C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk

creating build/temp.macosx-11-arm64-3.9/numpy/core/src/multiarray
creating build/temp.macosx-11-arm64-3.9/numpy/core/src/umath
creating build/temp.macosx-11-arm64-3.9/build/src.macosx-11-arm64-3.9/numpy/core/src/umath
creating build/temp.macosx-11-arm64-3.9/build/src.macosx-11-arm64-3.9/numpy/core/src/common
creating build/temp.macosx-11-arm64-3.9/private
creating build/temp.macosx-11-arm64-3.9/private/tmp
creating build/temp.macosx-11-arm64-3.9/private/tmp/pip-install-kcm69igy
creating build/temp.macosx-11-arm64-3.9/private/tmp/pip-install-kcm69igy/numpy_c59ca3d9b9d54309afb56b2d020bd75b
creating build/temp.macosx-11-arm64-3.9/private/tmp/pip-install-kcm69igy/numpy_c59ca3d9b9d54309afb56b2d020bd75b/numpy
creating build/temp.macosx-11-arm64-3.9/private/tmp/pip-install-kcm69igy/numpy_c59ca3d9b9d54309afb56b2d020bd75b/numpy/_build_utils
creating build/temp.macosx-11-arm64-3.9/private/tmp/pip-install-kcm69igy/numpy_c59ca3d9b9d54309afb56b2d020bd75b/numpy/_build_utils/src
compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNO_ATLAS_INFO=3 -DHAVE_CBLAS -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/umath -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/npymath -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/common -Inumpy/core/include -Ibuild/src.macosx-11-arm64-3.9/numpy/core/include/numpy -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/opt/homebrew/include -I/opt/homebrew/opt/openssl@1.1/include -I/opt/homebrew/opt/sqlite/include -I/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/include/python3.9 -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/npymath -c'
extra options: '-faltivec -I/System/Library/Frameworks/vecLib.framework/Headers'
clang: numpy/core/src/multiarray/buffer.c
clang: numpy/core/src/multiarray/alloc.c
clang: numpy/core/src/multiarray/array_assign_scalar.c
clang: numpy/core/src/multiarray/common.c
clang: numpy/core/src/multiarray/conversion_utils.c
clang: numpy/core/src/multiarray/descriptor.c
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/multiarray/einsum.c
clang: numpy/core/src/multiarray/datetime_strings.c
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: numpy/core/src/multiarray/hashdescr.c
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/multiarray/lowlevel_strided_loops.c
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: numpy/core/src/multiarray/multiarraymodule.c
clang: numpy/core/src/multiarray/nditer_constr.c
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: numpy/core/src/multiarray/temp_elide.c
clang: numpy/core/src/multiarray/refcount.c
clang: numpy/core/src/multiarray/scalarapi.c
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: numpy/core/src/multiarray/vdot.c
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/umath/loops.c
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: numpy/core/src/umath/ufunc_type_resolution.c
clang: numpy/core/src/umath/ufunc_object.c
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/npymath/ieee754.c
clang: numpy/core/src/common/array_assign.c
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: build/src.macosx-11-arm64-3.9/numpy/core/src/common/npy_cpu_features.c
clang: numpy/core/src/common/ucsnarrow.c
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: /private/tmp/pip-install-kcm69igy/numpy_c59ca3d9b9d54309afb56b2d020bd75b/numpy/_build_utils/src/apple_sgemv_fix.c
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
clang: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly
error: Command "clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNO_ATLAS_INFO=3 -DHAVE_CBLAS -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/umath -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/npymath -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/common -Inumpy/core/include -Ibuild/src.macosx-11-arm64-3.9/numpy/core/include/numpy -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/opt/homebrew/include -I/opt/homebrew/opt/openssl@1.1/include -I/opt/homebrew/opt/sqlite/include -I/opt/homebrew/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/include/python3.9 -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/common -Ibuild/src.macosx-11-arm64-3.9/numpy/core/src/npymath -c numpy/core/src/multiarray/alloc.c -o build/temp.macosx-11-arm64-3.9/numpy/core/src/multiarray/alloc.o -MMD -MF build/temp.macosx-11-arm64-3.9/numpy/core/src/multiarray/alloc.o.d -faltivec -I/System/Library/Frameworks/vecLib.framework/Headers" failed with exit status 1
----------------------------------------
ERROR: Failed building wheel for numpy

Failed to build numpy ERROR: Could not build wheels for numpy which use PEP 517 and cannot be installed directly

WARNING: Discarding https://files.pythonhosted.org/packages/fe/fd/8704c7b7b34cdac850485e638346025ca57c5a859934b9aa1be5399b33b7/scipy-1.6.3.tar.gz#sha256=a75b014d3294fce26852a9d04ea27b5671d86736beb34acdfc05859246260707 (from https://pypi.org/simple/scipy/) (requires-python:>=3.7,<3.10). Command errored out with exit status 1: /opt/homebrew/opt/python@3.9/bin/python3.9 /private/tmp/pip-standalone-pip-cynapsi1/__env_pip__.zip/pip install --ignore-installed --no-user --prefix /private/tmp/pip-build-env-uvfri7je/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'wheel<0.37.0' 'setuptools<=51.0.0' 'Cython>=0.29.18,<3.0' 'pybind11>=2.4.3,<2.7.0' 'numpy==1.19.2; python_version=='"'"'3.6'"'"' and platform_machine=='"'"'aarch64'"'"'' 'numpy==1.19.2; python_version=='"'"'3.7'"'"' and platform_machine=='"'"'aarch64'"'"'' 'numpy==1.16.5; python_version=='"'"'3.6'"'"' and platform_machine!='"'"'aarch64'"'"' and platform_python_implementation != '"'"'PyPy'"'"'' 'numpy==1.16.5; python_version=='"'"'3.7'"'"' and platform_machine!='"'"'aarch64'"'"' and platform_python_implementation != '"'"'PyPy'"'"'' 'numpy==1.17.3; python_version=='"'"'3.8'"'"' and platform_machine!='"'"'aarch64'"'"' and platform_python_implementation != '"'"'PyPy'"'"'' 'numpy==1.19.3; python_version=='"'"'3.9'"'"' and platform_python_implementation != '"'"'PyPy'"'"'' 'numpy==1.19.0; python_version=='"'"'3.6'"'"' and platform_python_implementation=='"'"'PyPy'"'"'' 'numpy==1.20.0; python_version=='"'"'3.7'"'"' and platform_python_implementation=='"'"'PyPy'"'"'' 'numpy; python_version>='"'"'3.10'"'"'' 'numpy; python_version>='"'"'3.8'"'"' and platform_python_implementation=='"'"'PyPy'"'"'' Check the logs for full command output. Using cached scipy-1.6.2.tar.gz (27.2 MB) Installing build dependencies ... \c^canceled ERROR: Operation cancelled by user

jagu2012 commented 3 years ago

(Slightly OT please forgive the noise. For those finding this thread looking for numpy/scipy solutions)

As of 4th August 2021 with a M1 Macbook Pro with Big Sur v11.4 (20F71) Python 3.9.6 (Homebrew):

Numpy just works (installs numpy v1.21.1):

pip install numpy

Scipy works with a combination of build flags and and libraries from homebrew (installs scipy v1.7.0):

brew install openblas
export OPENBLAS=$(brew --prefix openblas)
export CFLAGS="-falign-functions=8 ${CFLAGS}"
pip install Cython pybind11 pythran
pip install --no-use-pep517 scipy
marion-nkl commented 3 years ago

(Slightly OT please forgive the noise. For those finding this thread looking for numpy/scipy solutions)

As of 4th August 2021 with a M1 Macbook Pro with Big Sur v11.4 (20F71) Python 3.9.6 (Homebrew):

Numpy just works (installs numpy v1.21.1):

pip install numpy

Scipy works with a combination of build flags and and libraries from homebrew (installs scipy v1.7.0):

brew install openblas
export OPENBLAS=$(brew --prefix openblas)
export CFLAGS="-falign-functions=8 ${CFLAGS}"
pip install Cython pybind11 pythran
pip install --no-use-pep517 scipy

As of September 27th 2021, there is no need to include pythran nor add the --no-use-pep517 argument. pip install scipy works, as well as pip install scikit-learn that had the same issue as SciPy

matteius commented 2 years ago

Just verified this is no longer an issue on the master branch.

(pipenv) matteius@matteius-VirtualBox:~/shared-projects/pipenv-triage/pipenv-4576$ pipenv install
Courtesy Notice: Pipenv found itself running within a virtual environment, so it will automatically use that environment, instead of creating its own for any project. You can set PIPENV_IGNORE_VIRTUALENVS=1 to force pipenv to ignore that environment and create its own instead. You can set PIPENV_VERBOSITY=-1 to suppress this warning.
Pipfile.lock not found, creating...
Locking [dev-packages] dependencies...
Locking [packages] dependencies...
Building requirements...
Resolving dependencies...
✔ Success! 
Updated Pipfile.lock (2eb4eb)!
Installing dependencies from Pipfile.lock (2eb4eb)...
  🐍   ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 3/3 — 00:00:00
To activate this project's virtualenv, run pipenv shell.
Alternatively, run a command inside the virtualenv with pipenv run.
(pipenv) matteius@matteius-VirtualBox:~/shared-projects/pipenv-triage/pipenv-4576$ cat Pipfile.lock 
{
    "_meta": {
        "hash": {
            "sha256": "069ff12302896cdd027767bcd7008b7fb8c2b38a320c18a5b8712a79972eb4eb"
        },
        "pipfile-spec": 6,
        "requires": {},
        "sources": [
            {
                "name": "pypi",
                "url": "https://pypi.org/simple",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "numpy": {
            "hashes": [
                "sha256:07a8c89a04997625236c5ecb7afe35a02af3896c8aa01890a849913a2309c676",
                "sha256:08d9b008d0156c70dc392bb3ab3abb6e7a711383c3247b410b39962263576cd4",
                "sha256:201b4d0552831f7250a08d3b38de0d989d6f6e4658b709a02a73c524ccc6ffce",
                "sha256:2c10a93606e0b4b95c9b04b77dc349b398fdfbda382d2a39ba5a822f669a0123",
                "sha256:3ca688e1b9b95d80250bca34b11a05e389b1420d00e87a0d12dc45f131f704a1",
                "sha256:48a3aecd3b997bf452a2dedb11f4e79bc5bfd21a1d4cc760e703c31d57c84b3e",
                "sha256:568dfd16224abddafb1cbcce2ff14f522abe037268514dd7e42c6776a1c3f8e5",
                "sha256:5bfb1bb598e8229c2d5d48db1860bcf4311337864ea3efdbe1171fb0c5da515d",
                "sha256:639b54cdf6aa4f82fe37ebf70401bbb74b8508fddcf4797f9fe59615b8c5813a",
                "sha256:8251ed96f38b47b4295b1ae51631de7ffa8260b5b087808ef09a39a9d66c97ab",
                "sha256:92bfa69cfbdf7dfc3040978ad09a48091143cffb778ec3b03fa170c494118d75",
                "sha256:97098b95aa4e418529099c26558eeb8486e66bd1e53a6b606d684d0c3616b168",
                "sha256:a3bae1a2ed00e90b3ba5f7bd0a7c7999b55d609e0c54ceb2b076a25e345fa9f4",
                "sha256:c34ea7e9d13a70bf2ab64a2532fe149a9aced424cd05a2c4ba662fd989e3e45f",
                "sha256:dbc7601a3b7472d559dc7b933b18b4b66f9aa7452c120e87dfb33d02008c8a18",
                "sha256:e7927a589df200c5e23c57970bafbd0cd322459aa7b1ff73b7c2e84d6e3eae62",
                "sha256:f8c1f39caad2c896bc0018f699882b345b2a63708008be29b1f355ebf6f933fe",
                "sha256:f950f8845b480cffe522913d35567e29dd381b0dc7e4ce6a4a9f9156417d2430",
                "sha256:fade0d4f4d292b6f39951b6836d7a3c7ef5b2347f3c420cd9820a1d90d794802",
                "sha256:fdf3c08bce27132395d3c3ba1503cac12e17282358cb4bddc25cc46b0aca07aa"
            ],
            "markers": "python_version >= '3.10'",
            "version": "==1.22.3"
        },
        "pandas": {
            "hashes": [
                "sha256:0259cd11e7e6125aaea3af823b80444f3adad6149ff4c97fef760093598b3e34",
                "sha256:04dd15d9db538470900c851498e532ef28d4e56bfe72c9523acb32042de43dfb",
                "sha256:0b1a13f647e4209ed7dbb5da3497891d0045da9785327530ab696417ef478f84",
                "sha256:19f7c632436b1b4f84615c3b127bbd7bc603db95e3d4332ed259dc815c9aaa26",
                "sha256:1b384516dbb4e6aae30e3464c2e77c563da5980440fbdfbd0968e3942f8f9d70",
                "sha256:1d85d5f6be66dfd6d1d8d13b9535e342a2214260f1852654b19fa4d7b8d1218b",
                "sha256:2e5a7a1e0ecaac652326af627a3eca84886da9e667d68286866d4e33f6547caf",
                "sha256:3129a35d9dad1d80c234dd78f8f03141b914395d23f97cf92a366dcd19f8f8bf",
                "sha256:358b0bc98a5ff067132d23bf7a2242ee95db9ea5b7bbc401cf79205f11502fd3",
                "sha256:3dfb32ed50122fe8c5e7f2b8d97387edd742cc78f9ec36f007ee126cd3720907",
                "sha256:4e1176f45981c8ccc8161bc036916c004ca51037a7ed73f2d2a9857e6dbe654f",
                "sha256:508c99debccd15790d526ce6b1624b97a5e1e4ca5b871319fb0ebfd46b8f4dad",
                "sha256:6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee",
                "sha256:6d6ad1da00c7cc7d8dd1559a6ba59ba3973be6b15722d49738b2be0977eb8a0c",
                "sha256:7ea47ba1d6f359680130bd29af497333be6110de8f4c35b9211eec5a5a9630fa",
                "sha256:8db93ec98ac7cb5f8ac1420c10f5e3c43533153f253fe7fb6d891cf5aa2b80d2",
                "sha256:96e9ece5759f9b47ae43794b6359bbc54805d76e573b161ae770c1ea59393106",
                "sha256:bbb15ad79050e8b8d39ec40dd96a30cd09b886a2ae8848d0df1abba4d5502a67",
                "sha256:c614001129b2a5add5e3677c3a213a9e6fd376204cb8d17c04e84ff7dfc02a73",
                "sha256:e6a7bbbb7950063bfc942f8794bc3e31697c020a14f1cd8905fc1d28ec674a01",
                "sha256:f02e85e6d832be37d7f16cf6ac8bb26b519ace3e5f3235564a91c7f658ab2a43"
            ],
            "index": "pypi",
            "version": "==1.4.1"
        },
        "python-dateutil": {
            "hashes": [
                "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86",
                "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"
            ],
            "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'",
            "version": "==2.8.2"
        },
        "pytz": {
            "hashes": [
                "sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c",
                "sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326"
            ],
            "version": "==2021.3"
        },
        "six": {
            "hashes": [
                "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926",
                "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"
            ],
            "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'",
            "version": "==1.16.0"
        }
    },
    "develop": {}
}