Skip to content

Instantly share code, notes, and snippets.

@Shaked
Last active June 13, 2019 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shaked/849819cd7ba387e5ade2c457d2b4d3ef to your computer and use it in GitHub Desktop.
Save Shaked/849819cd7ba387e5ade2c457d2b4d3ef to your computer and use it in GitHub Desktop.
FROM arm64v8/ubuntu:16.04
RUN apt-get update && \
apt-get install -y software-properties-common vim && \
add-apt-repository ppa:jonathonf/python-3.6
RUN apt-get update -y
RUN apt-get install -y build-essential python3.6 python3.6-dev python3-pip python3.6-venv && \
apt-get install -y git
# update pip
RUN python3.6 -m pip install pip --upgrade && \
python3.6 -m pip install wheel
RUN apt-get install -y python-scipy libhdf5-dev python-h5py libblas-common libblas3 libgfortran3 liblapack3 python-decorator python-imaging python-numpy python-pil
RUN apt-get install -y libblas3 liblapack3 liblapack-dev libblas-dev
#RUN apt-get install -y swig
# install prerequisite
RUN apt-get install -y libpcre3-dev wget
# download swig 3.0.12
RUN wget -O swig-3.0.12.tar.gz https://netix.dl.sourceforge.net/project/swig/swig/swig-3.0.12/swig-3.0.12.tar.gz
# extract and configure
RUN tar xf swig-3.0.12.tar.gz
WORKDIR swig-3.0.12
RUN ./configure --prefix=/usr
# build
RUN make -j 4
# install
RUN make install
RUN apt-get install -y net-tools inetutils-ping
RUN apt-get install iproute2 -y
RUN python3.6 -m pip install numpy
COPY ./pypylon /opt/pypylon
COPY ./pylon_5.2.0.13457-deb0_arm64.deb /tmp/pylon_5.2.0.13457-deb0_arm64.deb
RUN apt install /tmp/pylon_5.2.0.13457-deb0_arm64.deb
RUN cd /opt/pypylon && python3.6 -m pip install .
RUN pip install keras
ENTRYPOINT ["bin", "bash"]
FROM arm64v8/ubuntu:18.04
RUN apt-get update && \
apt-get install -y software-properties-common vim && \
add-apt-repository ppa:jonathonf/python-3.6
RUN apt-get update -y
RUN apt-get install -y build-essential python3.6 python3.6-dev python3-pip python3.6-venv && \
apt-get install -y git
# update pip
RUN python3.6 -m pip install pip --upgrade && \
python3.6 -m pip install wheel
RUN apt-get install -y swig
RUN apt-get install -y net-tools inetutils-ping
RUN apt-get install iproute2 -y
RUN python3.6 -m pip install numpy
COPY ./pypylon /opt/pypylon
COPY ./pylon_5.2.0.13457-deb0_arm64.deb /tmp/pylon_5.2.0.13457-deb0_arm64.deb
RUN apt install /tmp/pylon_5.2.0.13457-deb0_arm64.deb
RUN cd /opt/pypylon && python3.6 -m pip install .
RUN pip install keras
# pip install --user keras==2.2.4
Collecting keras==2.2.4
Using cached https://files.pythonhosted.org/packages/5e/10/aa32dad071ce52b5502266b5c659451cfd6ffcbf14e6c8c4f16c0ff5aaab/Keras-2.2.4-py2.py3-none-any.whl
Requirement already satisfied: pyyaml in /root/.local/lib/python3.6/site-packages (from keras==2.2.4) (5.1.1)
Collecting h5py (from keras==2.2.4)
Using cached https://files.pythonhosted.org/packages/43/27/a6e7dcb8ae20a4dbf3725321058923fec262b6f7835179d78ccc8d98deec/h5py-2.9.0.tar.gz
^@^@^@^@^@^@Requirement already satisfied: scipy>=0.14 in /root/.local/lib/python3.6/site-packages (from keras==2.2.4) (1.3.0)
Collecting keras-applications>=1.0.6 (from keras==2.2.4)
Using cached https://files.pythonhosted.org/packages/71/e3/19762fdfc62877ae9102edf6342d71b28fbfd9dea3d2f96a882ce099b03f/Keras_Applications-1.0.8-py3-none-any.whl
Collecting keras-preprocessing>=1.0.5 (from keras==2.2.4)
Using cached https://files.pythonhosted.org/packages/28/6a/8c1f62c37212d9fc441a7e26736df51ce6f0e38455816445471f10da4f0a/Keras_Preprocessing-1.1.0-py2.py3-none-any.whl
Requirement already satisfied: numpy>=1.9.1 in /usr/local/lib/python3.6/dist-packages (from keras==2.2.4) (1.16.4)
Requirement already satisfied: six>=1.9.0 in /root/.local/lib/python3.6/site-packages (from keras==2.2.4) (1.12.0)
Building wheels for collected packages: h5py
Building wheel for h5py (setup.py) ... \^error
ERROR: Complete output from command /usr/bin/python3.6 -u -c 'import setuptools, tokenize;__file__='"'"'/tmp/pip-install-bf96knjj/h5py/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 /tmp/pip-wheel-qwsgiq8e --python-tag cp36:
ERROR: running bdist_wheel
running build
running build_py
creating build
creating build/lib.linux-aarch64-3.6
creating build/lib.linux-aarch64-3.6/h5py
copying h5py/highlevel.py -> build/lib.linux-aarch64-3.6/h5py
copying h5py/__init__.py -> build/lib.linux-aarch64-3.6/h5py
copying h5py/version.py -> build/lib.linux-aarch64-3.6/h5py
copying h5py/h5py_warnings.py -> build/lib.linux-aarch64-3.6/h5py
copying h5py/ipy_completer.py -> build/lib.linux-aarch64-3.6/h5py
creating build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/dataset.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/filters.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/__init__.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/compat.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/selections.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/datatype.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/dims.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/attrs.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/selections2.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/base.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/group.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/vds.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/files.py -> build/lib.linux-aarch64-3.6/h5py/_hl
creating build/lib.linux-aarch64-3.6/h5py/tests
copying h5py/tests/__init__.py -> build/lib.linux-aarch64-3.6/h5py/tests
copying h5py/tests/common.py -> build/lib.linux-aarch64-3.6/h5py/tests
creating build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_h5t.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_selections.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_h5p.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_dataset.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_slicing.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/__init__.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_objects.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_datatype.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_attrs.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_h5f.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_file.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_file_image.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_attrs_data.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_group.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_base.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_dimension_scales.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_h5.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_h5d_direct_chunk_write.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
creating build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_dims_dimensionproxy.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/__init__.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_datatype.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_dataset_getitem.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_attribute_create.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_filters.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_file.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_dataset_swmr.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_deprecation.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_threads.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
creating build/lib.linux-aarch64-3.6/h5py/tests/hl/test_vds
copying h5py/tests/hl/test_vds/__init__.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl/test_vds
copying h5py/tests/hl/test_vds/test_highlevel_vds.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl/test_vds
copying h5py/tests/hl/test_vds/test_lowlevel_vds.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl/test_vds
copying h5py/tests/hl/test_vds/test_virtual_source.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl/test_vds
running build_ext
Autodetection skipped [libhdf5.so: cannot open shared object file: No such file or directory]
********************************************************************************
Summary of the h5py configuration
Path to HDF5: None
HDF5 Version: '1.8.4'
MPI Enabled: False
Rebuild Required: True
********************************************************************************
Executing api_gen rebuild of defs
Executing cythonize()
[ 1/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/_conv.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/_conv.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 2/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/_errors.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/_errors.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 3/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/_objects.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/_objects.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 4/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/_proxy.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/_proxy.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 5/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/defs.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/defs.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 6/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 7/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5a.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5a.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 8/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5ac.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5ac.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 9/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5d.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5d.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[10/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5ds.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5ds.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[11/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5f.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5f.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[12/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5fd.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5fd.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
warning: h5py/h5fd.pxd:18:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/h5fd.pxd:19:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/h5fd.pxd:20:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/h5fd.pxd:21:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/h5fd.pxd:22:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/h5fd.pxd:23:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/h5fd.pxd:24:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/h5fd.pxd:25:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/h5fd.pxd:26:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/h5fd.pxd:31:8: 'H5FD_CORE' redeclared
warning: h5py/h5fd.pxd:32:8: 'H5FD_FAMILY' redeclared
warning: h5py/h5fd.pxd:34:8: 'H5FD_LOG' redeclared
warning: h5py/h5fd.pxd:35:8: 'H5FD_MPIO' redeclared
warning: h5py/h5fd.pxd:37:8: 'H5FD_MULTI' redeclared
warning: h5py/h5fd.pxd:38:8: 'H5FD_SEC2' redeclared
warning: h5py/h5fd.pxd:39:8: 'H5FD_STDIO' redeclared
warning: h5py/h5fd.pxd:44:6: 'H5FD_LOG_LOC_READ' redeclared
warning: h5py/h5fd.pxd:45:6: 'H5FD_LOG_LOC_WRITE' redeclared
warning: h5py/h5fd.pxd:46:6: 'H5FD_LOG_LOC_SEEK' redeclared
warning: h5py/h5fd.pxd:47:6: 'H5FD_LOG_LOC_IO' redeclared
warning: h5py/h5fd.pxd:50:6: 'H5FD_LOG_FILE_READ' redeclared
warning: h5py/h5fd.pxd:51:6: 'H5FD_LOG_FILE_WRITE' redeclared
warning: h5py/h5fd.pxd:52:6: 'H5FD_LOG_FILE_IO' redeclared
warning: h5py/h5fd.pxd:55:6: 'H5FD_LOG_FLAVOR' redeclared
warning: h5py/h5fd.pxd:58:6: 'H5FD_LOG_NUM_READ' redeclared
warning: h5py/h5fd.pxd:59:6: 'H5FD_LOG_NUM_WRITE' redeclared
warning: h5py/h5fd.pxd:60:6: 'H5FD_LOG_NUM_SEEK' redeclared
warning: h5py/h5fd.pxd:61:6: 'H5FD_LOG_NUM_IO' redeclared
warning: h5py/h5fd.pxd:64:6: 'H5FD_LOG_TIME_OPEN' redeclared
warning: h5py/h5fd.pxd:65:6: 'H5FD_LOG_TIME_READ' redeclared
warning: h5py/h5fd.pxd:66:6: 'H5FD_LOG_TIME_WRITE' redeclared
warning: h5py/h5fd.pxd:67:6: 'H5FD_LOG_TIME_SEEK' redeclared
warning: h5py/h5fd.pxd:68:6: 'H5FD_LOG_TIME_CLOSE' redeclared
warning: h5py/h5fd.pxd:69:6: 'H5FD_LOG_TIME_IO' redeclared
warning: h5py/h5fd.pxd:72:6: 'H5FD_LOG_ALLOC' redeclared
warning: h5py/h5fd.pxd:73:6: 'H5FD_LOG_ALL' redeclared
[13/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5g.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5g.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[14/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5i.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5i.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[15/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5l.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5l.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[16/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5o.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5o.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[17/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5p.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5p.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[18/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5r.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5r.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[19/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5s.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5s.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[20/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5t.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5t.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[21/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5z.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5z.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[22/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/utils.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/utils.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
building 'h5py.defs' extension
creating build/temp.linux-aarch64-3.6
creating build/temp.linux-aarch64-3.6/tmp
creating build/temp.linux-aarch64-3.6/tmp/pip-install-bf96knjj
creating build/temp.linux-aarch64-3.6/tmp/pip-install-bf96knjj/h5py
creating build/temp.linux-aarch64-3.6/tmp/pip-install-bf96knjj/h5py/h5py
aarch64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DH5_USE_16_API -I./h5py -I/tmp/pip-install-bf96knjj/h5py/lzf -I/opt/local/include -I/usr/local/include -I/usr/local/lib/python3.6/dist-packages/numpy/core/include -I/usr/include/python3.6m -c /tmp/pip-install-bf96knjj/h5py/h5py/defs.c -o build/temp.linux-aarch64-3.6/tmp/pip-install-bf96knjj/h5py/h5py/defs.o
In file included from /usr/local/lib/python3.6/dist-packages/numpy/core/include/numpy/ndarraytypes.h:1822:0,
from /usr/local/lib/python3.6/dist-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /usr/local/lib/python3.6/dist-packages/numpy/core/include/numpy/arrayobject.h:4,
from /tmp/pip-install-bf96knjj/h5py/h5py/api_compat.h:26,
from /tmp/pip-install-bf96knjj/h5py/h5py/defs.c:642:
/usr/local/lib/python3.6/dist-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
#warning "Using deprecated NumPy API, disable it with " \
^
In file included from /tmp/pip-install-bf96knjj/h5py/h5py/defs.c:642:0:
/tmp/pip-install-bf96knjj/h5py/h5py/api_compat.h:27:18: fatal error: hdf5.h: No such file or directory
compilation terminated.
error: command 'aarch64-linux-gnu-gcc' failed with exit status 1
----------------------------------------
ERROR: Failed building wheel for h5py
Running setup.py clean for h5py
Failed to build h5py
Installing collected packages: h5py, keras-applications, keras-preprocessing, keras
Running setup.py install for h5py ... \^error
ERROR: Complete output from command /usr/bin/python3.6 -u -c 'import setuptools, tokenize;__file__='"'"'/tmp/pip-install-bf96knjj/h5py/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-iv77mqkt/install-record.txt --single-version-externally-managed --compile --user --prefix=:
ERROR: running install
running build
running build_py
creating build
creating build/lib.linux-aarch64-3.6
creating build/lib.linux-aarch64-3.6/h5py
copying h5py/highlevel.py -> build/lib.linux-aarch64-3.6/h5py
copying h5py/__init__.py -> build/lib.linux-aarch64-3.6/h5py
copying h5py/version.py -> build/lib.linux-aarch64-3.6/h5py
copying h5py/h5py_warnings.py -> build/lib.linux-aarch64-3.6/h5py
copying h5py/ipy_completer.py -> build/lib.linux-aarch64-3.6/h5py
creating build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/dataset.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/filters.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/__init__.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/compat.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/selections.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/datatype.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/dims.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/attrs.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/selections2.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/base.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/group.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/vds.py -> build/lib.linux-aarch64-3.6/h5py/_hl
copying h5py/_hl/files.py -> build/lib.linux-aarch64-3.6/h5py/_hl
creating build/lib.linux-aarch64-3.6/h5py/tests
copying h5py/tests/__init__.py -> build/lib.linux-aarch64-3.6/h5py/tests
copying h5py/tests/common.py -> build/lib.linux-aarch64-3.6/h5py/tests
creating build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_h5t.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_selections.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_h5p.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_dataset.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_slicing.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/__init__.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_objects.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_datatype.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_attrs.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_h5f.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_file.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_file_image.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_attrs_data.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_group.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_base.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_dimension_scales.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_h5.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
copying h5py/tests/old/test_h5d_direct_chunk_write.py -> build/lib.linux-aarch64-3.6/h5py/tests/old
creating build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_dims_dimensionproxy.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/__init__.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_datatype.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_dataset_getitem.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_attribute_create.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_filters.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_file.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_dataset_swmr.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_deprecation.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
copying h5py/tests/hl/test_threads.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl
creating build/lib.linux-aarch64-3.6/h5py/tests/hl/test_vds
copying h5py/tests/hl/test_vds/__init__.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl/test_vds
copying h5py/tests/hl/test_vds/test_highlevel_vds.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl/test_vds
copying h5py/tests/hl/test_vds/test_lowlevel_vds.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl/test_vds
copying h5py/tests/hl/test_vds/test_virtual_source.py -> build/lib.linux-aarch64-3.6/h5py/tests/hl/test_vds
running build_ext
Autodetection skipped [libhdf5.so: cannot open shared object file: No such file or directory]
********************************************************************************
Summary of the h5py configuration
Path to HDF5: None
HDF5 Version: '1.8.4'
MPI Enabled: False
Rebuild Required: True
********************************************************************************
Executing cythonize()
[ 1/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/_conv.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/_conv.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 2/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/_errors.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/_errors.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 3/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/_objects.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/_objects.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 4/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/_proxy.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/_proxy.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 5/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/defs.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/defs.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 6/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 7/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5a.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5a.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 8/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5ac.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5ac.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[ 9/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5d.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5d.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[10/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5ds.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5ds.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[11/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5f.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5f.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[12/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5fd.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5fd.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
warning: h5py/h5fd.pxd:18:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/h5fd.pxd:19:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/h5fd.pxd:20:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/h5fd.pxd:21:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/h5fd.pxd:22:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/h5fd.pxd:23:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/h5fd.pxd:24:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/h5fd.pxd:25:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/h5fd.pxd:26:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/h5fd.pxd:31:8: 'H5FD_CORE' redeclared
warning: h5py/h5fd.pxd:32:8: 'H5FD_FAMILY' redeclared
warning: h5py/h5fd.pxd:34:8: 'H5FD_LOG' redeclared
warning: h5py/h5fd.pxd:35:8: 'H5FD_MPIO' redeclared
warning: h5py/h5fd.pxd:37:8: 'H5FD_MULTI' redeclared
warning: h5py/h5fd.pxd:38:8: 'H5FD_SEC2' redeclared
warning: h5py/h5fd.pxd:39:8: 'H5FD_STDIO' redeclared
warning: h5py/h5fd.pxd:44:6: 'H5FD_LOG_LOC_READ' redeclared
warning: h5py/h5fd.pxd:45:6: 'H5FD_LOG_LOC_WRITE' redeclared
warning: h5py/h5fd.pxd:46:6: 'H5FD_LOG_LOC_SEEK' redeclared
warning: h5py/h5fd.pxd:47:6: 'H5FD_LOG_LOC_IO' redeclared
warning: h5py/h5fd.pxd:50:6: 'H5FD_LOG_FILE_READ' redeclared
warning: h5py/h5fd.pxd:51:6: 'H5FD_LOG_FILE_WRITE' redeclared
warning: h5py/h5fd.pxd:52:6: 'H5FD_LOG_FILE_IO' redeclared
warning: h5py/h5fd.pxd:55:6: 'H5FD_LOG_FLAVOR' redeclared
warning: h5py/h5fd.pxd:58:6: 'H5FD_LOG_NUM_READ' redeclared
warning: h5py/h5fd.pxd:59:6: 'H5FD_LOG_NUM_WRITE' redeclared
warning: h5py/h5fd.pxd:60:6: 'H5FD_LOG_NUM_SEEK' redeclared
warning: h5py/h5fd.pxd:61:6: 'H5FD_LOG_NUM_IO' redeclared
warning: h5py/h5fd.pxd:64:6: 'H5FD_LOG_TIME_OPEN' redeclared
warning: h5py/h5fd.pxd:65:6: 'H5FD_LOG_TIME_READ' redeclared
warning: h5py/h5fd.pxd:66:6: 'H5FD_LOG_TIME_WRITE' redeclared
warning: h5py/h5fd.pxd:67:6: 'H5FD_LOG_TIME_SEEK' redeclared
warning: h5py/h5fd.pxd:68:6: 'H5FD_LOG_TIME_CLOSE' redeclared
warning: h5py/h5fd.pxd:69:6: 'H5FD_LOG_TIME_IO' redeclared
warning: h5py/h5fd.pxd:72:6: 'H5FD_LOG_ALLOC' redeclared
warning: h5py/h5fd.pxd:73:6: 'H5FD_LOG_ALL' redeclared
[13/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5g.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5g.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[14/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5i.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5i.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[15/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5l.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5l.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[16/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5o.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5o.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[17/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5p.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5p.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[18/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5r.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5r.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[19/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5s.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5s.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[20/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5t.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5t.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[21/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/h5z.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/h5z.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
[22/22] Cythonizing /tmp/pip-install-bf96knjj/h5py/h5py/utils.pyx
/tmp/pip-install-bf96knjj/h5py/.eggs/Cython-0.29.10-py3.6-linux-aarch64.egg/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /tmp/pip-install-bf96knjj/h5py/h5py/utils.pxd
tree = Parsing.p_module(s, pxd, full_module_name)
warning: h5py/api_types_hdf5.pxd:408:2: 'H5D_layout_t' redeclared
warning: h5py/api_types_hdf5.pxd:415:2: 'H5D_alloc_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:422:2: 'H5D_space_status_t' redeclared
warning: h5py/api_types_hdf5.pxd:428:2: 'H5D_fill_time_t' redeclared
warning: h5py/api_types_hdf5.pxd:434:2: 'H5D_fill_value_t' redeclared
warning: h5py/api_types_hdf5.pxd:446:7: 'H5F_close_degree_t' redeclared
warning: h5py/api_types_hdf5.pxd:452:2: 'H5FD_mem_t' redeclared
warning: h5py/api_types_hdf5.pxd:550:2: 'H5T_cset_t' redeclared
warning: h5py/api_types_hdf5.pxd:729:7: 'H5Z_EDC_t' redeclared
warning: h5py/api_types_hdf5.pxd:409:4: 'H5D_LAYOUT_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:410:4: 'H5D_COMPACT' redeclared
warning: h5py/api_types_hdf5.pxd:411:4: 'H5D_CONTIGUOUS' redeclared
warning: h5py/api_types_hdf5.pxd:412:4: 'H5D_CHUNKED' redeclared
warning: h5py/api_types_hdf5.pxd:413:4: 'H5D_NLAYOUTS' redeclared
warning: h5py/api_types_hdf5.pxd:416:4: 'H5D_ALLOC_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:417:4: 'H5D_ALLOC_TIME_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:418:4: 'H5D_ALLOC_TIME_EARLY' redeclared
warning: h5py/api_types_hdf5.pxd:419:4: 'H5D_ALLOC_TIME_LATE' redeclared
warning: h5py/api_types_hdf5.pxd:420:4: 'H5D_ALLOC_TIME_INCR' redeclared
warning: h5py/api_types_hdf5.pxd:423:4: 'H5D_SPACE_STATUS_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:424:4: 'H5D_SPACE_STATUS_NOT_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:425:4: 'H5D_SPACE_STATUS_PART_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:426:4: 'H5D_SPACE_STATUS_ALLOCATED' redeclared
warning: h5py/api_types_hdf5.pxd:429:4: 'H5D_FILL_TIME_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:430:4: 'H5D_FILL_TIME_ALLOC' redeclared
warning: h5py/api_types_hdf5.pxd:431:4: 'H5D_FILL_TIME_NEVER' redeclared
warning: h5py/api_types_hdf5.pxd:432:4: 'H5D_FILL_TIME_IFSET' redeclared
warning: h5py/api_types_hdf5.pxd:435:4: 'H5D_FILL_VALUE_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:436:4: 'H5D_FILL_VALUE_UNDEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:437:4: 'H5D_FILL_VALUE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:438:4: 'H5D_FILL_VALUE_USER_DEFINED' redeclared
warning: h5py/api_types_hdf5.pxd:447:4: 'H5F_CLOSE_WEAK' redeclared
warning: h5py/api_types_hdf5.pxd:448:4: 'H5F_CLOSE_SEMI' redeclared
warning: h5py/api_types_hdf5.pxd:449:4: 'H5F_CLOSE_STRONG' redeclared
warning: h5py/api_types_hdf5.pxd:450:4: 'H5F_CLOSE_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:453:4: 'H5FD_MEM_NOLIST' redeclared
warning: h5py/api_types_hdf5.pxd:454:4: 'H5FD_MEM_DEFAULT' redeclared
warning: h5py/api_types_hdf5.pxd:455:4: 'H5FD_MEM_SUPER' redeclared
warning: h5py/api_types_hdf5.pxd:456:4: 'H5FD_MEM_BTREE' redeclared
warning: h5py/api_types_hdf5.pxd:457:4: 'H5FD_MEM_DRAW' redeclared
warning: h5py/api_types_hdf5.pxd:458:4: 'H5FD_MEM_GHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:459:4: 'H5FD_MEM_LHEAP' redeclared
warning: h5py/api_types_hdf5.pxd:460:4: 'H5FD_MEM_OHDR' redeclared
warning: h5py/api_types_hdf5.pxd:461:4: 'H5FD_MEM_NTYPES' redeclared
warning: h5py/api_types_hdf5.pxd:551:4: 'H5T_CSET_ERROR' redeclared
warning: h5py/api_types_hdf5.pxd:552:4: 'H5T_CSET_ASCII' redeclared
warning: h5py/api_types_hdf5.pxd:695:2: 'H5Z_filter_t' redeclared
warning: h5py/api_types_hdf5.pxd:730:6: 'H5Z_ERROR_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:731:6: 'H5Z_DISABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:732:6: 'H5Z_ENABLE_EDC' redeclared
warning: h5py/api_types_hdf5.pxd:733:6: 'H5Z_NO_EDC' redeclared
building 'h5py.defs' extension
creating build/temp.linux-aarch64-3.6
creating build/temp.linux-aarch64-3.6/tmp
creating build/temp.linux-aarch64-3.6/tmp/pip-install-bf96knjj
creating build/temp.linux-aarch64-3.6/tmp/pip-install-bf96knjj/h5py
creating build/temp.linux-aarch64-3.6/tmp/pip-install-bf96knjj/h5py/h5py
aarch64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DH5_USE_16_API -I./h5py -I/tmp/pip-install-bf96knjj/h5py/lzf -I/opt/local/include -I/usr/local/include -I/usr/local/lib/python3.6/dist-packages/numpy/core/include -I/usr/include/python3.6m -c /tmp/pip-install-bf96knjj/h5py/h5py/defs.c -o build/temp.linux-aarch64-3.6/tmp/pip-install-bf96knjj/h5py/h5py/defs.o
In file included from /usr/local/lib/python3.6/dist-packages/numpy/core/include/numpy/ndarraytypes.h:1822:0,
from /usr/local/lib/python3.6/dist-packages/numpy/core/include/numpy/ndarrayobject.h:12,
from /usr/local/lib/python3.6/dist-packages/numpy/core/include/numpy/arrayobject.h:4,
from /tmp/pip-install-bf96knjj/h5py/h5py/api_compat.h:26,
from /tmp/pip-install-bf96knjj/h5py/h5py/defs.c:642:
/usr/local/lib/python3.6/dist-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
#warning "Using deprecated NumPy API, disable it with " \
^
In file included from /tmp/pip-install-bf96knjj/h5py/h5py/defs.c:642:0:
/tmp/pip-install-bf96knjj/h5py/h5py/api_compat.h:27:18: fatal error: hdf5.h: No such file or directory
compilation terminated.
error: command 'aarch64-linux-gnu-gcc' failed with exit status 1
----------------------------------------
ERROR: Command "/usr/bin/python3.6 -u -c 'import setuptools, tokenize;__file__='"'"'/tmp/pip-install-bf96knjj/h5py/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-iv77mqkt/install-record.txt --single-version-externally-managed --compile --user --prefix=" failed with error code 1 in /tmp/pip-install-bf96knjj/h5py/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment