Bug#1055594: rasterio: FTBFS with GDAL 3.8.0

Bas Couwenberg sebastic at xs4all.nl
Wed Nov 8 16:03:15 GMT 2023


Source: rasterio
Version: 1.3.9-1
Severity: important
Tags: ftbfs upstream
User: debian-gis at lists.debian.org
Usertags: gdal-3.8

Dear Maintainer,

Your package FTBFS with GDAL 3.8.0 from experimental:

 =================================== FAILURES ===================================
 _____________________________ test_resampling_rms ______________________________
 
     @requires_gdal33
     def test_resampling_rms():
         """Test Resampling.rms method"""
         with rasterio.open('tests/data/float.tif') as s:
             out_shape = (2, 2)
             rms = s.read(1, out_shape=out_shape, resampling=Resampling.rms)
             expected = np.array([
                 [1.35266399, 0.95388681],
                 [0.29308701, 1.54074657]], dtype=np.float32)
 >           assert (rms == expected).all()  # all True.
 E           assert False
 E            +  where False = <built-in method all of numpy.ndarray object at 0x7fc748dabe70>()
 E            +    where <built-in method all of numpy.ndarray object at 0x7fc748dabe70> = array([[1.352... 1.54074657]]) == array([[1.352...dtype=float32)
 E                 Use -v to get more diff.all
 
 tests/test_read_resample.py:106: AssertionError
 ------------------------------ Captured log call -------------------------------
 DEBUG    rasterio._env:env.py:326 GDAL data files are available at built-in paths.
 DEBUG    rasterio._env:env.py:326 PROJ data files are available at built-in paths.
 DEBUG    rasterio._env:env.py:326 Started GDALEnv: self=<rasterio._env.GDALEnv object at 0x7fc748e43fd0>.
 DEBUG    rasterio._env:env.py:362 Stopped GDALEnv <rasterio._env.GDALEnv object at 0x7fc748e43fd0>.
 DEBUG    rasterio._env:env.py:326 GDAL data files are available at built-in paths.
 DEBUG    rasterio._env:env.py:326 PROJ data files are available at built-in paths.
 DEBUG    rasterio._env:env.py:326 Started GDALEnv: self=<rasterio._env.GDALEnv object at 0x7fc748e43730>.
 DEBUG    rasterio._env:env.py:362 Stopped GDALEnv <rasterio._env.GDALEnv object at 0x7fc748e43730>.
 =============================== warnings summary ===============================
 tests/test_cli_main.py:1
   /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/tests/test_cli_main.py:1: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
     from pkg_resources import iter_entry_points
 
 rasterio/__init__.py:304: 1 warning
 tests/test_blocks.py: 5 warnings
 tests/test_boundless_read.py: 1 warning
 tests/test_crs.py: 1 warning
 tests/test_dataset.py: 6 warnings
 tests/test_dataset_rw.py: 1 warning
 tests/test_dtypes.py: 1 warning
 tests/test_gdal_raster_io.py: 14 warnings
 tests/test_mask_creation.py: 1 warning
 tests/test_no_georef.py: 1 warning
 tests/test_open_options.py: 1 warning
 tests/test_overviews.py: 1 warning
 tests/test_read.py: 1 warning
 tests/test_rpcs.py: 1 warning
 tests/test_subdatasets.py: 1 warning
 tests/test_tags.py: 1 warning
 tests/test_write.py: 6 warnings
   /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/__init__.py:304: NotGeoreferencedWarning: Dataset has no geotransform, gcps, or rpcs. The identity matrix will be returned.
     dataset = DatasetReader(path, driver=driver, sharing=sharing, **kwargs)
 
 tests/test_blocks.py: 5 warnings
 tests/test_complex_dtypes.py: 3 warnings
 tests/test_creation_options.py: 1 warning
 tests/test_dataset.py: 6 warnings
 tests/test_dataset_rw.py: 2 warnings
 tests/test_descriptions.py: 4 warnings
 tests/test_dtypes.py: 1 warning
 tests/test_gdal_raster_io.py: 35 warnings
 tests/test_no_georef.py: 2 warnings
 tests/test_png.py: 1 warning
 tests/test_profile.py: 1 warning
 tests/test_rpcs.py: 1 warning
 tests/test_scale_offset.py: 8 warnings
 tests/test_tags.py: 3 warnings
 tests/test_units.py: 4 warnings
 tests/test_write.py: 23 warnings
   /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/__init__.py:314: NotGeoreferencedWarning: Dataset has no geotransform, gcps, or rpcs. The identity matrix will be returned.
     dataset = writer(
 
 tests/test_boundless_read.py::test_issue2382
 tests/test_memoryfile.py::test_write_rpcs_to_memfile
   /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/io.py:141: NotGeoreferencedWarning: The given matrix is equal to Affine.identity or its flipped counterpart. GDAL may ignore this matrix and save no geotransform without raising an error. This behavior is somewhat driver-specific.
     return writer(
 
 tests/test_dataset.py: 4 warnings
 tests/test_features.py: 9 warnings
 tests/test_mask.py: 21 warnings
 tests/test_no_georef.py: 1 warning
 tests/test_write.py: 2 warnings
   /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/__init__.py:314: NotGeoreferencedWarning: The given matrix is equal to Affine.identity or its flipped counterpart. GDAL may ignore this matrix and save no geotransform without raising an error. This behavior is somewhat driver-specific.
     dataset = writer(
 
 tests/test_dtypes.py::test_cant_cast_dtype_nan[uint8]
 tests/test_dtypes.py::test_cant_cast_dtype_nan[uint16]
 tests/test_dtypes.py::test_cant_cast_dtype_nan[uint32]
 tests/test_dtypes.py::test_cant_cast_dtype_nan[int32]
   /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/dtypes.py:224: RuntimeWarning: invalid value encountered in cast
     return np.allclose(values, values.astype(dtype), equal_nan=True)
 
 tests/test_nodata.py::test_set_mem_inf_nodata
 tests/test_nodata.py::test_set_mem_nan_nodata
 tests/test_warnings.py::test_notgeoref_warning
 tests/test_warnings.py::test_no_notgeoref_warning[None-gcps1-None]
 tests/test_warnings.py::test_no_notgeoref_warning[None-None-rpcs2]
   /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/io.py:141: NotGeoreferencedWarning: Dataset has no geotransform, gcps, or rpcs. The identity matrix will be returned.
     return writer(
 
 tests/test_show_versions.py::test_get_deps_info
 tests/test_show_versions.py::test_show_versions_with_gdal
   /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/_show_versions.py:76: DeprecationWarning: Accessing attrs.__version__ is deprecated and will be removed in a future release. Use importlib.metadata directly to query for attrs's packaging metadata.
     return module.__version__
 
 tests/test_warnings.py::test_no_notgeoref_warning[transform0-None-None]
 tests/test_warnings.py::test_no_notgeoref_warning[None-gcps1-None]
 tests/test_warnings.py::test_no_notgeoref_warning[None-None-rpcs2]
   /usr/lib/python3/dist-packages/_pytest/python.py:194: PytestRemovedIn8Warning: Passing None has been deprecated.
   See https://docs.pytest.org/en/latest/how-to/capture-warnings.html#additional-use-cases-of-warnings-in-tests for alternatives in common use cases.
     result = testfunction(**testargs)
 
 -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
 =========================== short test summary info ============================
 FAILED tests/test_read_resample.py::test_resampling_rms - assert False
 = 1 failed, 1070 passed, 4 skipped, 6 xfailed, 6 xpassed, 198 warnings in 15.67s =

The full buildlog is attached.

Kind Regards,

Bas
-------------- next part --------------
dpkg-checkbuilddeps: error: Unmet build dependencies: libgdal-dev pybuild-plugin-pyproject python3-affine (>= 1.3.0) python3-boto3 python3-click-plugins python3-cligj (>= 0.5) python3-hypothesis python3-snuggs (>= 1.4.1)
W: Unmet build-dependency in source
dh clean --buildsystem pybuild
   dh_auto_clean -O--buildsystem=pybuild
   dh_autoreconf_clean -O--buildsystem=pybuild
   dh_clean -O--buildsystem=pybuild
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building rasterio using existing ./rasterio_1.3.9.orig.tar.gz
dpkg-source: info: using patch list from debian/patches/series
dpkg-source: info: building rasterio in rasterio_1.3.9-2.debian.tar.xz
dpkg-source: info: building rasterio in rasterio_1.3.9-2.dsc
I: Generating source changes file for original dsc
dpkg-genchanges: info: not including original source code in upload
I: Copying COW directory
I: forking: rm -rf /var/cache/pbuilder/build/cow.3124513
I: forking: cp -al /var/cache/pbuilder/base-sid+rebuild.cow /var/cache/pbuilder/build/cow.3124513
I: removed stale ilistfile /var/cache/pbuilder/build/cow.3124513/.ilist
I: forking: chroot /var/cache/pbuilder/build/cow.3124513 cowdancer-ilistcreate /.ilist 'find . -xdev -path ./home -prune -o \( \( -type l -o -type f \) -a -links +1 -print0 \) | xargs -0 stat --format '%d %i ''
I: Invoking pbuilder
I: forking: pbuilder build --debbuildopts  --debbuildopts  --buildplace /var/cache/pbuilder/build/cow.3124513 --buildresult /var/cache/pbuilder/result/ --mirror http://ftp.nl.debian.org/debian/ --distribution sid --no-targz --internal-chrootexec 'chroot /var/cache/pbuilder/build/cow.3124513 cow-shell' /home/bas/tmp/debian/rasterio_1.3.9-2.dsc
I: Running in no-targz mode
I: pbuilder: network access will be disabled during build
I: Current time: Wed Nov  8 16:57:50 CET 2023
I: pbuilder-time-stamp: 1699459070
I: copying local configuration
W: --override-config is not set; not updating apt.conf Read the manpage for details.
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: policy-rc.d already exists
I: Obtaining the cached apt archive contents
I: Copying source file
I: copying [/home/bas/tmp/debian/rasterio_1.3.9-2.dsc]
I: copying [/home/bas/tmp/debian/rasterio_1.3.9.orig.tar.gz]
I: copying [/home/bas/tmp/debian/rasterio_1.3.9-2.debian.tar.xz]
I: Extracting source
dpkg-source: warning: extracting unsigned source package (rasterio_1.3.9-2.dsc)
dpkg-source: info: extracting rasterio in rasterio-1.3.9
dpkg-source: info: unpacking rasterio_1.3.9.orig.tar.gz
dpkg-source: info: unpacking rasterio_1.3.9-2.debian.tar.xz
dpkg-source: info: using patch list from debian/patches/series
dpkg-source: info: applying 0001-Rename-rio-to-rasterio-Closes-788463.patch
dpkg-source: info: applying spelling-errors.patch
dpkg-source: info: applying boto.patch
dpkg-source: info: applying no-distutils.patch
I: Not using root during the build.
I: Installing the build-deps
 -> Attempting to satisfy build-dependencies
 -> Creating pbuilder-satisfydepends-dummy package
Package: pbuilder-satisfydepends-dummy
Version: 0.invalid.0
Architecture: amd64
Maintainer: Debian Pbuilder Team <pbuilder-maint at lists.alioth.debian.org>
Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder
 This package was created automatically by pbuilder to satisfy the
 build-dependencies of the package being currently built.
Depends: debhelper-compat (= 13), dh-python, dh-sequence-numpy3, dh-sequence-python3, libgdal-dev, gdal-bin, cython3, pybuild-plugin-pyproject, python3-affine (>= 1.3.0), python3-all, python3-all-dev, python3-attr (>= 16.0.0), python3-boto3, python3-click-plugins, python3-cligj (>= 0.5), python3-hypothesis, python3-numpy (>= 1.10), python3-packaging, python3-pytest, python3-setuptools, python3-shapely, python3-snuggs (>= 1.4.1)
dpkg-deb: building package 'pbuilder-satisfydepends-dummy' in '/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'.
Selecting previously unselected package pbuilder-satisfydepends-dummy.
(Reading database ... 14516 files and directories currently installed.)
Preparing to unpack .../pbuilder-satisfydepends-dummy.deb ...
Unpacking pbuilder-satisfydepends-dummy (0.invalid.0) ...
dpkg: pbuilder-satisfydepends-dummy: dependency problems, but configuring anyway as you requested:
 pbuilder-satisfydepends-dummy depends on debhelper-compat (= 13); however:
  Package debhelper-compat is not installed.
 pbuilder-satisfydepends-dummy depends on dh-python; however:
  Package dh-python is not installed.
 pbuilder-satisfydepends-dummy depends on dh-sequence-numpy3; however:
  Package dh-sequence-numpy3 is not installed.
 pbuilder-satisfydepends-dummy depends on dh-sequence-python3; however:
  Package dh-sequence-python3 is not installed.
 pbuilder-satisfydepends-dummy depends on libgdal-dev; however:
  Package libgdal-dev is not installed.
 pbuilder-satisfydepends-dummy depends on gdal-bin; however:
  Package gdal-bin is not installed.
 pbuilder-satisfydepends-dummy depends on cython3; however:
  Package cython3 is not installed.
 pbuilder-satisfydepends-dummy depends on pybuild-plugin-pyproject; however:
  Package pybuild-plugin-pyproject is not installed.
 pbuilder-satisfydepends-dummy depends on python3-affine (>= 1.3.0); however:
  Package python3-affine is not installed.
 pbuilder-satisfydepends-dummy depends on python3-all; however:
  Package python3-all is not installed.
 pbuilder-satisfydepends-dummy depends on python3-all-dev; however:
  Package python3-all-dev is not installed.
 pbuilder-satisfydepends-dummy depends on python3-attr (>= 16.0.0); however:
  Package python3-attr is not installed.
 pbuilder-satisfydepends-dummy depends on python3-boto3; however:
  Package python3-boto3 is not installed.
 pbuilder-satisfydepends-dummy depends on python3-click-plugins; however:
  Package python3-click-plugins is not installed.
 pbuilder-satisfydepends-dummy depends on python3-cligj (>= 0.5); however:
  Package python3-cligj is not installed.
 pbuilder-satisfydepends-dummy depends on python3-hypothesis; however:
  Package python3-hypothesis is not installed.
 pbuilder-satisfydepends-dummy depends on python3-numpy (>= 1.10); however:
  Package python3-numpy is not installed.
 pbuilder-satisfydepends-dummy depends on python3-packaging; however:
  Package python3-packaging is not installed.
 pbuilder-satisfydepends-dummy depends on python3-pytest; however:
  Package python3-pytest is not installed.
 pbuilder-satisfydepends-dummy depends on python3-setuptools; however:
  Package python3-setuptools is not installed.
 pbuilder-satisfydepends-dummy depends on python3-shapely; however:
  Package python3-shapely is not installed.
 pbuilder-satisfydepends-dummy depends on python3-snuggs (>= 1.4.1); however:
  Package python3-snuggs is not installed.

Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ...
Reading package lists...
Building dependency tree...
Reading state information...
Initializing package states...
Writing extended state information...
Building tag database...
pbuilder-satisfydepends-dummy is already installed at the requested version (0.invalid.0)
pbuilder-satisfydepends-dummy is already installed at the requested version (0.invalid.0)
The following NEW packages will be installed:
  autoconf{a} automake{a} autopoint{a} autotools-dev{a} bsdextrautils{a} ca-certificates{a} cython3{a} debhelper{a} default-libmysqlclient-dev{a} dh-autoreconf{a} dh-python{a} dh-strip-nondeterminism{a} dwz{a} file{a} fontconfig-config{a} fonts-dejavu-core{a} fonts-dejavu-mono{a} gdal-bin{a} gdal-data{a} gdal-plugins{a} gettext{a} gettext-base{a} groff-base{a} hdf5-helpers{a} icu-devtools{a} intltool-debian{a} libaec-dev{a} libaec0{a} libaom-dev{a} libaom3{a} libarchive-zip-perl{a} libarmadillo-dev{a} libarmadillo12{a} libarpack2{a} libarpack2-dev{a} libblas-dev{a} libblas3{a} libblosc-dev{a} libblosc1{a} libboost-dev{a} libboost1.74-dev{a} libbrotli1{a} libcfitsio-dev{a} libcfitsio10{a} libcurl3-gnutls{a} libcurl4{a} libcurl4-openssl-dev{a} libdav1d-dev{a} libdav1d7{a} libde265-0{a} libde265-dev{a} libdebhelper-perl{a} libdeflate-dev{a} libdeflate0{a} libelf1{a} libexpat1{a} libexpat1-dev{a} libfile-stripnondeterminism-perl{a} libfontconfig1{a} libfreetype6{a} libfreexl-dev{a} libfreexl1{a} libfyba-dev{a} libfyba0{a} libgdal-dev{a} libgdal34{a} libgeos-c1v5{a} libgeos-dev{a} libgeos3.12.0{a} libgeotiff-dev{a} libgeotiff5{a} libgfortran5{a} libgif-dev{a} libgif7{a} libhdf4-0-alt{a} libhdf4-alt-dev{a} libhdf5-103-1{a} libhdf5-cpp-103-1{a} libhdf5-dev{a} libhdf5-fortran-102{a} libhdf5-hl-100{a} libhdf5-hl-cpp-100{a} libhdf5-hl-fortran-100{a} libheif-dev{a} libheif-plugin-dav1d{a} libheif-plugin-libde265{a} libheif1{a} libicu-dev{a} libicu72{a} libjbig-dev{a} libjbig0{a} libjpeg-dev{a} libjpeg62-turbo{a} libjpeg62-turbo-dev{a} libjs-jquery{a} libjs-sphinxdoc{a} libjs-underscore{a} libjson-c-dev{a} libjson-c5{a} libkml-dev{a} libkmlbase1{a} libkmlconvenience1{a} libkmldom1{a} libkmlengine1{a} libkmlregionator1{a} libkmlxsd1{a} liblapack-dev{a} liblapack3{a} liblcms2-2{a} liblerc-dev{a} liblerc4{a} libltdl-dev{a} libltdl7{a} liblz4-dev{a} liblzma-dev{a} libmagic-mgc{a} libmagic1{a} libmariadb-dev{a} libmariadb-dev-compat{a} libmariadb3{a} libminizip-dev{a} libminizip1{a} libnetcdf-dev{a} libnetcdf19{a} libnghttp2-14{a} libnspr4{a} libnss3{a} libnuma1{a} libodbc2{a} libodbccr2{a} libodbcinst2{a} libogdi-dev{a} libogdi4.1{a} libopenjp2-7{a} libopenjp2-7-dev{a} libpcre2-16-0{a} libpcre2-32-0{a} libpcre2-dev{a} libpcre2-posix3{a} libpipeline1{a} libpng-dev{a} libpng16-16{a} libpoppler-dev{a} libpoppler-private-dev{a} libpoppler126{a} libpq-dev{a} libpq5{a} libproj-dev{a} libproj25{a} libpsl5{a} libpython3-all-dev{a} libpython3-dev{a} libpython3-stdlib{a} libpython3.11{a} libpython3.11-dev{a} libpython3.11-minimal{a} libpython3.11-stdlib{a} libqhull-dev{a} libqhull-r8.0{a} libqhull8.0{a} libqhullcpp8.0{a} librtmp1{a} librttopo-dev{a} librttopo1{a} libsharpyuv-dev{a} libsharpyuv0{a} libsnappy1v5{a} libspatialite-dev{a} libspatialite8{a} libsqlite3-dev{a} libssh2-1{a} libssl-dev{a} libsub-override-perl{a} libsuperlu-dev{a} libsuperlu6{a} libsz2{a} libtiff-dev{a} libtiff6{a} libtiffxx6{a} libtool{a} libuchardet0{a} liburiparser-dev{a} liburiparser1{a} libwebp-dev{a} libwebp7{a} libwebpdecoder3{a} libwebpdemux2{a} libwebpmux3{a} libx265-199{a} libx265-dev{a} libxerces-c-dev{a} libxerces-c3.2{a} libxml2{a} libxml2-dev{a} libzstd-dev{a} m4{a} man-db{a} mariadb-common{a} media-types{a} mysql-common{a} openssl{a} po-debconf{a} proj-data{a} pybuild-plugin-pyproject{a} python3{a} python3-affine{a} python3-all{a} python3-all-dev{a} python3-attr{a} python3-boto3{a} python3-botocore{a} python3-build{a} python3-certifi{a} python3-chardet{a} python3-charset-normalizer{a} python3-click{a} python3-click-plugins{a} python3-cligj{a} python3-colorama{a} python3-dateutil{a} python3-dev{a} python3-distutils{a} python3-gdal{a} python3-hypothesis{a} python3-idna{a} python3-iniconfig{a} python3-installer{a} python3-jmespath{a} python3-lib2to3{a} python3-minimal{a} python3-numpy{a} python3-packaging{a} python3-pkg-resources{a} python3-pluggy{a} python3-pyparsing{a} python3-pyproject-hooks{a} python3-pytest{a} python3-requests{a} python3-s3transfer{a} python3-setuptools{a} python3-shapely{a} python3-six{a} python3-snuggs{a} python3-sortedcontainers{a} python3-toml{a} python3-urllib3{a} python3-wheel{a} python3.11{a} python3.11-dev{a} python3.11-minimal{a} unixodbc-common{a} unixodbc-dev{a} zlib1g-dev{a} 
The following packages are RECOMMENDED but will NOT be installed:
  curl javascript-common libarchive-cpio-perl libcfitsio-doc libheif-plugin-aomenc libheif-plugin-x265 libmail-sendmail-perl libpng-tools lynx pkg-config pkgconf poppler-data proj-bin publicsuffix python3-pygments wget 
0 packages upgraded, 253 newly installed, 0 to remove and 0 not upgraded.
Need to get 622 kB/145 MB of archives. After unpacking 803 MB will be used.
Writing extended state information...
Get: 1 http://ftp.nl.debian.org/debian sid/main amd64 libhdf4-0-alt amd64 4.2.16-3 [264 kB]
Get: 2 http://ftp.nl.debian.org/debian sid/main amd64 libhdf4-alt-dev amd64 4.2.16-3 [358 kB]
Fetched 622 kB in 0s (7927 kB/s)
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package libpython3.11-minimal:amd64.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 14516 files and directories currently installed.)
Preparing to unpack .../libpython3.11-minimal_3.11.6-3_amd64.deb ...
Unpacking libpython3.11-minimal:amd64 (3.11.6-3) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../libexpat1_2.5.0-2_amd64.deb ...
Unpacking libexpat1:amd64 (2.5.0-2) ...
Selecting previously unselected package python3.11-minimal.
Preparing to unpack .../python3.11-minimal_3.11.6-3_amd64.deb ...
Unpacking python3.11-minimal (3.11.6-3) ...
Setting up libpython3.11-minimal:amd64 (3.11.6-3) ...
Setting up libexpat1:amd64 (2.5.0-2) ...
Setting up python3.11-minimal (3.11.6-3) ...
Selecting previously unselected package python3-minimal.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 14832 files and directories currently installed.)
Preparing to unpack .../python3-minimal_3.11.4-5+b1_amd64.deb ...
Unpacking python3-minimal (3.11.4-5+b1) ...
Selecting previously unselected package media-types.
Preparing to unpack .../media-types_10.1.0_all.deb ...
Unpacking media-types (10.1.0) ...
Selecting previously unselected package libpython3.11-stdlib:amd64.
Preparing to unpack .../libpython3.11-stdlib_3.11.6-3_amd64.deb ...
Unpacking libpython3.11-stdlib:amd64 (3.11.6-3) ...
Selecting previously unselected package python3.11.
Preparing to unpack .../python3.11_3.11.6-3_amd64.deb ...
Unpacking python3.11 (3.11.6-3) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../libpython3-stdlib_3.11.4-5+b1_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.11.4-5+b1) ...
Setting up python3-minimal (3.11.4-5+b1) ...
Selecting previously unselected package python3.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 15250 files and directories currently installed.)
Preparing to unpack .../000-python3_3.11.4-5+b1_amd64.deb ...
Unpacking python3 (3.11.4-5+b1) ...
Selecting previously unselected package openssl.
Preparing to unpack .../001-openssl_3.0.12-1_amd64.deb ...
Unpacking openssl (3.0.12-1) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../002-ca-certificates_20230311_all.deb ...
Unpacking ca-certificates (20230311) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../003-libmagic-mgc_1%3a5.45-2_amd64.deb ...
Unpacking libmagic-mgc (1:5.45-2) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../004-libmagic1_1%3a5.45-2_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.45-2) ...
Selecting previously unselected package file.
Preparing to unpack .../005-file_1%3a5.45-2_amd64.deb ...
Unpacking file (1:5.45-2) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../006-gettext-base_0.21-13+b1_amd64.deb ...
Unpacking gettext-base (0.21-13+b1) ...
Selecting previously unselected package libuchardet0:amd64.
Preparing to unpack .../007-libuchardet0_0.0.7-1_amd64.deb ...
Unpacking libuchardet0:amd64 (0.0.7-1) ...
Selecting previously unselected package groff-base.
Preparing to unpack .../008-groff-base_1.23.0-3_amd64.deb ...
Unpacking groff-base (1.23.0-3) ...
Selecting previously unselected package bsdextrautils.
Preparing to unpack .../009-bsdextrautils_2.39.2-5_amd64.deb ...
Unpacking bsdextrautils (2.39.2-5) ...
Selecting previously unselected package libpipeline1:amd64.
Preparing to unpack .../010-libpipeline1_1.5.7-1_amd64.deb ...
Unpacking libpipeline1:amd64 (1.5.7-1) ...
Selecting previously unselected package man-db.
Preparing to unpack .../011-man-db_2.12.0-1_amd64.deb ...
Unpacking man-db (2.12.0-1) ...
Selecting previously unselected package m4.
Preparing to unpack .../012-m4_1.4.19-4_amd64.deb ...
Unpacking m4 (1.4.19-4) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../013-autoconf_2.71-3_all.deb ...
Unpacking autoconf (2.71-3) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../014-autotools-dev_20220109.1_all.deb ...
Unpacking autotools-dev (20220109.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../015-automake_1%3a1.16.5-1.3_all.deb ...
Unpacking automake (1:1.16.5-1.3) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../016-autopoint_0.21-13_all.deb ...
Unpacking autopoint (0.21-13) ...
Selecting previously unselected package cython3.
Preparing to unpack .../017-cython3_0.29.36-1_amd64.deb ...
Unpacking cython3 (0.29.36-1) ...
Selecting previously unselected package libdebhelper-perl.
Preparing to unpack .../018-libdebhelper-perl_13.11.7_all.deb ...
Unpacking libdebhelper-perl (13.11.7) ...
Selecting previously unselected package libtool.
Preparing to unpack .../019-libtool_2.4.7-7_all.deb ...
Unpacking libtool (2.4.7-7) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../020-dh-autoreconf_20_all.deb ...
Unpacking dh-autoreconf (20) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../021-libarchive-zip-perl_1.68-1_all.deb ...
Unpacking libarchive-zip-perl (1.68-1) ...
Selecting previously unselected package libsub-override-perl.
Preparing to unpack .../022-libsub-override-perl_0.09-4_all.deb ...
Unpacking libsub-override-perl (0.09-4) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../023-libfile-stripnondeterminism-perl_1.13.1-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (1.13.1-1) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../024-dh-strip-nondeterminism_1.13.1-1_all.deb ...
Unpacking dh-strip-nondeterminism (1.13.1-1) ...
Selecting previously unselected package libelf1:amd64.
Preparing to unpack .../025-libelf1_0.189-4_amd64.deb ...
Unpacking libelf1:amd64 (0.189-4) ...
Selecting previously unselected package dwz.
Preparing to unpack .../026-dwz_0.15-1_amd64.deb ...
Unpacking dwz (0.15-1) ...
Selecting previously unselected package libicu72:amd64.
Preparing to unpack .../027-libicu72_72.1-4_amd64.deb ...
Unpacking libicu72:amd64 (72.1-4) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../028-libxml2_2.9.14+dfsg-1.3_amd64.deb ...
Unpacking libxml2:amd64 (2.9.14+dfsg-1.3) ...
Selecting previously unselected package gettext.
Preparing to unpack .../029-gettext_0.21-13+b1_amd64.deb ...
Unpacking gettext (0.21-13+b1) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../030-intltool-debian_0.35.0+20060710.6_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.6) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../031-po-debconf_1.0.21+nmu1_all.deb ...
Unpacking po-debconf (1.0.21+nmu1) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../032-debhelper_13.11.7_all.deb ...
Unpacking debhelper (13.11.7) ...
Selecting previously unselected package mysql-common.
Preparing to unpack .../033-mysql-common_5.8+1.1.0_all.deb ...
Unpacking mysql-common (5.8+1.1.0) ...
Selecting previously unselected package mariadb-common.
Preparing to unpack .../034-mariadb-common_1%3a10.11.5-3_all.deb ...
Unpacking mariadb-common (1:10.11.5-3) ...
Selecting previously unselected package libmariadb3:amd64.
Preparing to unpack .../035-libmariadb3_1%3a10.11.5-3_amd64.deb ...
Unpacking libmariadb3:amd64 (1:10.11.5-3) ...
Selecting previously unselected package libssl-dev:amd64.
Preparing to unpack .../036-libssl-dev_3.0.12-1_amd64.deb ...
Unpacking libssl-dev:amd64 (3.0.12-1) ...
Selecting previously unselected package zlib1g-dev:amd64.
Preparing to unpack .../037-zlib1g-dev_1%3a1.2.13.dfsg-3_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-3) ...
Selecting previously unselected package libmariadb-dev.
Preparing to unpack .../038-libmariadb-dev_1%3a10.11.5-3_amd64.deb ...
Unpacking libmariadb-dev (1:10.11.5-3) ...
Selecting previously unselected package libmariadb-dev-compat.
Preparing to unpack .../039-libmariadb-dev-compat_1%3a10.11.5-3_amd64.deb ...
Unpacking libmariadb-dev-compat (1:10.11.5-3) ...
Selecting previously unselected package default-libmysqlclient-dev:amd64.
Preparing to unpack .../040-default-libmysqlclient-dev_1.1.0_amd64.deb ...
Unpacking default-libmysqlclient-dev:amd64 (1.1.0) ...
Selecting previously unselected package python3-lib2to3.
Preparing to unpack .../041-python3-lib2to3_3.11.5-1_all.deb ...
Unpacking python3-lib2to3 (3.11.5-1) ...
Selecting previously unselected package python3-distutils.
Preparing to unpack .../042-python3-distutils_3.11.5-1_all.deb ...
Unpacking python3-distutils (3.11.5-1) ...
Selecting previously unselected package python3-pkg-resources.
Preparing to unpack .../043-python3-pkg-resources_68.1.2-2_all.deb ...
Unpacking python3-pkg-resources (68.1.2-2) ...
Selecting previously unselected package python3-setuptools.
Preparing to unpack .../044-python3-setuptools_68.1.2-2_all.deb ...
Unpacking python3-setuptools (68.1.2-2) ...
Selecting previously unselected package dh-python.
Preparing to unpack .../045-dh-python_6.20231107_all.deb ...
Unpacking dh-python (6.20231107) ...
Selecting previously unselected package fonts-dejavu-mono.
Preparing to unpack .../046-fonts-dejavu-mono_2.37-8_all.deb ...
Unpacking fonts-dejavu-mono (2.37-8) ...
Selecting previously unselected package fonts-dejavu-core.
Preparing to unpack .../047-fonts-dejavu-core_2.37-8_all.deb ...
Unpacking fonts-dejavu-core (2.37-8) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../048-fontconfig-config_2.14.2-6_amd64.deb ...
Unpacking fontconfig-config (2.14.2-6) ...
Selecting previously unselected package libblas3:amd64.
Preparing to unpack .../049-libblas3_3.11.0-2_amd64.deb ...
Unpacking libblas3:amd64 (3.11.0-2) ...
Selecting previously unselected package libgfortran5:amd64.
Preparing to unpack .../050-libgfortran5_13.2.0-6_amd64.deb ...
Unpacking libgfortran5:amd64 (13.2.0-6) ...
Selecting previously unselected package liblapack3:amd64.
Preparing to unpack .../051-liblapack3_3.11.0-2_amd64.deb ...
Unpacking liblapack3:amd64 (3.11.0-2) ...
Selecting previously unselected package python3-numpy.
Preparing to unpack .../052-python3-numpy_1%3a1.24.2-1_amd64.deb ...
Unpacking python3-numpy (1:1.24.2-1) ...
Selecting previously unselected package gdal-data.
Preparing to unpack .../053-gdal-data_3.8.0~rc1+dfsg-1~exp1_all.deb ...
Unpacking gdal-data (3.8.0~rc1+dfsg-1~exp1) ...
Selecting previously unselected package gdal-plugins.
Preparing to unpack .../054-gdal-plugins_3.8.0~rc1+dfsg-1~exp1_amd64.deb ...
Unpacking gdal-plugins (3.8.0~rc1+dfsg-1~exp1) ...
Selecting previously unselected package libaec0:amd64.
Preparing to unpack .../055-libaec0_1.1.2-1_amd64.deb ...
Unpacking libaec0:amd64 (1.1.2-1) ...
Selecting previously unselected package libarpack2:amd64.
Preparing to unpack .../056-libarpack2_3.9.1-1_amd64.deb ...
Unpacking libarpack2:amd64 (3.9.1-1) ...
Selecting previously unselected package libsuperlu6:amd64.
Preparing to unpack .../057-libsuperlu6_6.0.1+dfsg1-1_amd64.deb ...
Unpacking libsuperlu6:amd64 (6.0.1+dfsg1-1) ...
Selecting previously unselected package libarmadillo12.
Preparing to unpack .../058-libarmadillo12_1%3a12.6.4+dfsg-1_amd64.deb ...
Unpacking libarmadillo12 (1:12.6.4+dfsg-1) ...
Selecting previously unselected package libsnappy1v5:amd64.
Preparing to unpack .../059-libsnappy1v5_1.1.10-1_amd64.deb ...
Unpacking libsnappy1v5:amd64 (1.1.10-1) ...
Selecting previously unselected package libblosc1:amd64.
Preparing to unpack .../060-libblosc1_1.21.5+ds-1_amd64.deb ...
Unpacking libblosc1:amd64 (1.21.5+ds-1) ...
Selecting previously unselected package libbrotli1:amd64.
Preparing to unpack .../061-libbrotli1_1.1.0-1_amd64.deb ...
Unpacking libbrotli1:amd64 (1.1.0-1) ...
Selecting previously unselected package libnghttp2-14:amd64.
Preparing to unpack .../062-libnghttp2-14_1.58.0-1_amd64.deb ...
Unpacking libnghttp2-14:amd64 (1.58.0-1) ...
Selecting previously unselected package libpsl5:amd64.
Preparing to unpack .../063-libpsl5_0.21.2-1+b1_amd64.deb ...
Unpacking libpsl5:amd64 (0.21.2-1+b1) ...
Selecting previously unselected package librtmp1:amd64.
Preparing to unpack .../064-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ...
Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ...
Selecting previously unselected package libssh2-1:amd64.
Preparing to unpack .../065-libssh2-1_1.11.0-2_amd64.deb ...
Unpacking libssh2-1:amd64 (1.11.0-2) ...
Selecting previously unselected package libcurl3-gnutls:amd64.
Preparing to unpack .../066-libcurl3-gnutls_8.4.0-2_amd64.deb ...
Unpacking libcurl3-gnutls:amd64 (8.4.0-2) ...
Selecting previously unselected package libcfitsio10:amd64.
Preparing to unpack .../067-libcfitsio10_4.3.0-2_amd64.deb ...
Unpacking libcfitsio10:amd64 (4.3.0-2) ...
Selecting previously unselected package libcurl4:amd64.
Preparing to unpack .../068-libcurl4_8.4.0-2_amd64.deb ...
Unpacking libcurl4:amd64 (8.4.0-2) ...
Selecting previously unselected package libdeflate0:amd64.
Preparing to unpack .../069-libdeflate0_1.18-1_amd64.deb ...
Unpacking libdeflate0:amd64 (1.18-1) ...
Selecting previously unselected package libminizip1:amd64.
Preparing to unpack .../070-libminizip1_1%3a1.2.13.dfsg-3_amd64.deb ...
Unpacking libminizip1:amd64 (1:1.2.13.dfsg-3) ...
Selecting previously unselected package libfreexl1:amd64.
Preparing to unpack .../071-libfreexl1_2.0.0-1_amd64.deb ...
Unpacking libfreexl1:amd64 (2.0.0-1) ...
Selecting previously unselected package libfyba0:amd64.
Preparing to unpack .../072-libfyba0_4.1.1-8_amd64.deb ...
Unpacking libfyba0:amd64 (4.1.1-8) ...
Selecting previously unselected package libgeos3.12.0:amd64.
Preparing to unpack .../073-libgeos3.12.0_3.12.0-1_amd64.deb ...
Unpacking libgeos3.12.0:amd64 (3.12.0-1) ...
Selecting previously unselected package libgeos-c1v5:amd64.
Preparing to unpack .../074-libgeos-c1v5_3.12.0-1_amd64.deb ...
Unpacking libgeos-c1v5:amd64 (3.12.0-1) ...
Selecting previously unselected package proj-data.
Preparing to unpack .../075-proj-data_9.3.0-1_all.deb ...
Unpacking proj-data (9.3.0-1) ...
Selecting previously unselected package libjbig0:amd64.
Preparing to unpack .../076-libjbig0_2.1-6.1_amd64.deb ...
Unpacking libjbig0:amd64 (2.1-6.1) ...
Selecting previously unselected package libjpeg62-turbo:amd64.
Preparing to unpack .../077-libjpeg62-turbo_1%3a2.1.5-2_amd64.deb ...
Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ...
Selecting previously unselected package liblerc4:amd64.
Preparing to unpack .../078-liblerc4_4.0.0+ds-3_amd64.deb ...
Unpacking liblerc4:amd64 (4.0.0+ds-3) ...
Selecting previously unselected package libsharpyuv0:amd64.
Preparing to unpack .../079-libsharpyuv0_1.3.2-0.3_amd64.deb ...
Unpacking libsharpyuv0:amd64 (1.3.2-0.3) ...
Selecting previously unselected package libwebp7:amd64.
Preparing to unpack .../080-libwebp7_1.3.2-0.3_amd64.deb ...
Unpacking libwebp7:amd64 (1.3.2-0.3) ...
Selecting previously unselected package libtiff6:amd64.
Preparing to unpack .../081-libtiff6_4.5.1+git230720-1_amd64.deb ...
Unpacking libtiff6:amd64 (4.5.1+git230720-1) ...
Selecting previously unselected package libproj25:amd64.
Preparing to unpack .../082-libproj25_9.3.0-1_amd64.deb ...
Unpacking libproj25:amd64 (9.3.0-1) ...
Selecting previously unselected package libgeotiff5:amd64.
Preparing to unpack .../083-libgeotiff5_1.7.1-3_amd64.deb ...
Unpacking libgeotiff5:amd64 (1.7.1-3) ...
Selecting previously unselected package libgif7:amd64.
Preparing to unpack .../084-libgif7_5.2.1-2.5_amd64.deb ...
Unpacking libgif7:amd64 (5.2.1-2.5) ...
Selecting previously unselected package libhdf4-0-alt.
Preparing to unpack .../085-libhdf4-0-alt_4.2.16-3_amd64.deb ...
Unpacking libhdf4-0-alt (4.2.16-3) ...
Selecting previously unselected package libsz2:amd64.
Preparing to unpack .../086-libsz2_1.1.2-1_amd64.deb ...
Unpacking libsz2:amd64 (1.1.2-1) ...
Selecting previously unselected package libhdf5-103-1:amd64.
Preparing to unpack .../087-libhdf5-103-1_1.10.10+repack-3_amd64.deb ...
Unpacking libhdf5-103-1:amd64 (1.10.10+repack-3) ...
Selecting previously unselected package libdav1d7:amd64.
Preparing to unpack .../088-libdav1d7_1.3.0-2_amd64.deb ...
Unpacking libdav1d7:amd64 (1.3.0-2) ...
Selecting previously unselected package libheif-plugin-dav1d:amd64.
Preparing to unpack .../089-libheif-plugin-dav1d_1.17.1-1+b1_amd64.deb ...
Unpacking libheif-plugin-dav1d:amd64 (1.17.1-1+b1) ...
Selecting previously unselected package libde265-0:amd64.
Preparing to unpack .../090-libde265-0_1.0.12-2_amd64.deb ...
Unpacking libde265-0:amd64 (1.0.12-2) ...
Selecting previously unselected package libheif-plugin-libde265:amd64.
Preparing to unpack .../091-libheif-plugin-libde265_1.17.1-1+b1_amd64.deb ...
Unpacking libheif-plugin-libde265:amd64 (1.17.1-1+b1) ...
Selecting previously unselected package libheif1:amd64.
Preparing to unpack .../092-libheif1_1.17.1-1+b1_amd64.deb ...
Unpacking libheif1:amd64 (1.17.1-1+b1) ...
Selecting previously unselected package libjson-c5:amd64.
Preparing to unpack .../093-libjson-c5_0.17-1_amd64.deb ...
Unpacking libjson-c5:amd64 (0.17-1) ...
Selecting previously unselected package liburiparser1:amd64.
Preparing to unpack .../094-liburiparser1_0.9.7+dfsg-2_amd64.deb ...
Unpacking liburiparser1:amd64 (0.9.7+dfsg-2) ...
Selecting previously unselected package libkmlbase1:amd64.
Preparing to unpack .../095-libkmlbase1_1.3.0-10_amd64.deb ...
Unpacking libkmlbase1:amd64 (1.3.0-10) ...
Selecting previously unselected package libkmldom1:amd64.
Preparing to unpack .../096-libkmldom1_1.3.0-10_amd64.deb ...
Unpacking libkmldom1:amd64 (1.3.0-10) ...
Selecting previously unselected package libkmlengine1:amd64.
Preparing to unpack .../097-libkmlengine1_1.3.0-10_amd64.deb ...
Unpacking libkmlengine1:amd64 (1.3.0-10) ...
Selecting previously unselected package libhdf5-hl-100:amd64.
Preparing to unpack .../098-libhdf5-hl-100_1.10.10+repack-3_amd64.deb ...
Unpacking libhdf5-hl-100:amd64 (1.10.10+repack-3) ...
Selecting previously unselected package libnetcdf19:amd64.
Preparing to unpack .../099-libnetcdf19_1%3a4.9.2-2_amd64.deb ...
Unpacking libnetcdf19:amd64 (1:4.9.2-2) ...
Selecting previously unselected package libltdl7:amd64.
Preparing to unpack .../100-libltdl7_2.4.7-7_amd64.deb ...
Unpacking libltdl7:amd64 (2.4.7-7) ...
Selecting previously unselected package libodbc2:amd64.
Preparing to unpack .../101-libodbc2_2.3.12-1_amd64.deb ...
Unpacking libodbc2:amd64 (2.3.12-1) ...
Selecting previously unselected package unixodbc-common.
Preparing to unpack .../102-unixodbc-common_2.3.12-1_all.deb ...
Unpacking unixodbc-common (2.3.12-1) ...
Selecting previously unselected package libodbcinst2:amd64.
Preparing to unpack .../103-libodbcinst2_2.3.12-1_amd64.deb ...
Unpacking libodbcinst2:amd64 (2.3.12-1) ...
Selecting previously unselected package libogdi4.1.
Preparing to unpack .../104-libogdi4.1_4.1.0+ds-6_amd64.deb ...
Unpacking libogdi4.1 (4.1.0+ds-6) ...
Selecting previously unselected package libopenjp2-7:amd64.
Preparing to unpack .../105-libopenjp2-7_2.5.0-2_amd64.deb ...
Unpacking libopenjp2-7:amd64 (2.5.0-2) ...
Selecting previously unselected package libpng16-16:amd64.
Preparing to unpack .../106-libpng16-16_1.6.40-2_amd64.deb ...
Unpacking libpng16-16:amd64 (1.6.40-2) ...
Selecting previously unselected package libfreetype6:amd64.
Preparing to unpack .../107-libfreetype6_2.13.2+dfsg-1_amd64.deb ...
Unpacking libfreetype6:amd64 (2.13.2+dfsg-1) ...
Selecting previously unselected package libfontconfig1:amd64.
Preparing to unpack .../108-libfontconfig1_2.14.2-6_amd64.deb ...
Unpacking libfontconfig1:amd64 (2.14.2-6) ...
Selecting previously unselected package liblcms2-2:amd64.
Preparing to unpack .../109-liblcms2-2_2.14-2_amd64.deb ...
Unpacking liblcms2-2:amd64 (2.14-2) ...
Selecting previously unselected package libnspr4:amd64.
Preparing to unpack .../110-libnspr4_2%3a4.35-1.1_amd64.deb ...
Unpacking libnspr4:amd64 (2:4.35-1.1) ...
Selecting previously unselected package libnss3:amd64.
Preparing to unpack .../111-libnss3_2%3a3.94-1_amd64.deb ...
Unpacking libnss3:amd64 (2:3.94-1) ...
Selecting previously unselected package libpoppler126:amd64.
Preparing to unpack .../112-libpoppler126_22.12.0-2+b1_amd64.deb ...
Unpacking libpoppler126:amd64 (22.12.0-2+b1) ...
Selecting previously unselected package libpq5:amd64.
Preparing to unpack .../113-libpq5_16.0-2_amd64.deb ...
Unpacking libpq5:amd64 (16.0-2) ...
Selecting previously unselected package libqhull-r8.0:amd64.
Preparing to unpack .../114-libqhull-r8.0_2020.2-6_amd64.deb ...
Unpacking libqhull-r8.0:amd64 (2020.2-6) ...
Selecting previously unselected package librttopo1:amd64.
Preparing to unpack .../115-librttopo1_1.1.0-3_amd64.deb ...
Unpacking librttopo1:amd64 (1.1.0-3) ...
Selecting previously unselected package libspatialite8:amd64.
Preparing to unpack .../116-libspatialite8_5.1.0-1_amd64.deb ...
Unpacking libspatialite8:amd64 (5.1.0-1) ...
Selecting previously unselected package libxerces-c3.2:amd64.
Preparing to unpack .../117-libxerces-c3.2_3.2.4+debian-1_amd64.deb ...
Unpacking libxerces-c3.2:amd64 (3.2.4+debian-1) ...
Selecting previously unselected package libgdal34.
Preparing to unpack .../118-libgdal34_3.8.0~rc1+dfsg-1~exp1_amd64.deb ...
Unpacking libgdal34 (3.8.0~rc1+dfsg-1~exp1) ...
Selecting previously unselected package python3-gdal.
Preparing to unpack .../119-python3-gdal_3.8.0~rc1+dfsg-1~exp1_amd64.deb ...
Unpacking python3-gdal (3.8.0~rc1+dfsg-1~exp1) ...
Selecting previously unselected package gdal-bin.
Preparing to unpack .../120-gdal-bin_3.8.0~rc1+dfsg-1~exp1_amd64.deb ...
Unpacking gdal-bin (3.8.0~rc1+dfsg-1~exp1) ...
Selecting previously unselected package hdf5-helpers.
Preparing to unpack .../121-hdf5-helpers_1.10.10+repack-3_amd64.deb ...
Unpacking hdf5-helpers (1.10.10+repack-3) ...
Selecting previously unselected package icu-devtools.
Preparing to unpack .../122-icu-devtools_72.1-4_amd64.deb ...
Unpacking icu-devtools (72.1-4) ...
Selecting previously unselected package libaec-dev:amd64.
Preparing to unpack .../123-libaec-dev_1.1.2-1_amd64.deb ...
Unpacking libaec-dev:amd64 (1.1.2-1) ...
Selecting previously unselected package libaom3:amd64.
Preparing to unpack .../124-libaom3_3.7.0-1_amd64.deb ...
Unpacking libaom3:amd64 (3.7.0-1) ...
Selecting previously unselected package libaom-dev:amd64.
Preparing to unpack .../125-libaom-dev_3.7.0-1_amd64.deb ...
Unpacking libaom-dev:amd64 (3.7.0-1) ...
Selecting previously unselected package libblas-dev:amd64.
Preparing to unpack .../126-libblas-dev_3.11.0-2_amd64.deb ...
Unpacking libblas-dev:amd64 (3.11.0-2) ...
Selecting previously unselected package liblapack-dev:amd64.
Preparing to unpack .../127-liblapack-dev_3.11.0-2_amd64.deb ...
Unpacking liblapack-dev:amd64 (3.11.0-2) ...
Selecting previously unselected package libarpack2-dev:amd64.
Preparing to unpack .../128-libarpack2-dev_3.9.1-1_amd64.deb ...
Unpacking libarpack2-dev:amd64 (3.9.1-1) ...
Selecting previously unselected package libhdf5-fortran-102:amd64.
Preparing to unpack .../129-libhdf5-fortran-102_1.10.10+repack-3_amd64.deb ...
Unpacking libhdf5-fortran-102:amd64 (1.10.10+repack-3) ...
Selecting previously unselected package libhdf5-hl-fortran-100:amd64.
Preparing to unpack .../130-libhdf5-hl-fortran-100_1.10.10+repack-3_amd64.deb ...
Unpacking libhdf5-hl-fortran-100:amd64 (1.10.10+repack-3) ...
Selecting previously unselected package libhdf5-cpp-103-1:amd64.
Preparing to unpack .../131-libhdf5-cpp-103-1_1.10.10+repack-3_amd64.deb ...
Unpacking libhdf5-cpp-103-1:amd64 (1.10.10+repack-3) ...
Selecting previously unselected package libhdf5-hl-cpp-100:amd64.
Preparing to unpack .../132-libhdf5-hl-cpp-100_1.10.10+repack-3_amd64.deb ...
Unpacking libhdf5-hl-cpp-100:amd64 (1.10.10+repack-3) ...
Selecting previously unselected package libjpeg62-turbo-dev:amd64.
Preparing to unpack .../133-libjpeg62-turbo-dev_1%3a2.1.5-2_amd64.deb ...
Unpacking libjpeg62-turbo-dev:amd64 (1:2.1.5-2) ...
Selecting previously unselected package libjpeg-dev:amd64.
Preparing to unpack .../134-libjpeg-dev_1%3a2.1.5-2_amd64.deb ...
Unpacking libjpeg-dev:amd64 (1:2.1.5-2) ...
Selecting previously unselected package libcurl4-openssl-dev:amd64.
Preparing to unpack .../135-libcurl4-openssl-dev_8.4.0-2_amd64.deb ...
Unpacking libcurl4-openssl-dev:amd64 (8.4.0-2) ...
Selecting previously unselected package libhdf5-dev.
Preparing to unpack .../136-libhdf5-dev_1.10.10+repack-3_amd64.deb ...
Unpacking libhdf5-dev (1.10.10+repack-3) ...
Selecting previously unselected package libsuperlu-dev:amd64.
Preparing to unpack .../137-libsuperlu-dev_6.0.1+dfsg1-1_amd64.deb ...
Unpacking libsuperlu-dev:amd64 (6.0.1+dfsg1-1) ...
Selecting previously unselected package libarmadillo-dev.
Preparing to unpack .../138-libarmadillo-dev_1%3a12.6.4+dfsg-1_amd64.deb ...
Unpacking libarmadillo-dev (1:12.6.4+dfsg-1) ...
Selecting previously unselected package libblosc-dev:amd64.
Preparing to unpack .../139-libblosc-dev_1.21.5+ds-1_amd64.deb ...
Unpacking libblosc-dev:amd64 (1.21.5+ds-1) ...
Selecting previously unselected package libboost1.74-dev:amd64.
Preparing to unpack .../140-libboost1.74-dev_1.74.0+ds1-23_amd64.deb ...
Unpacking libboost1.74-dev:amd64 (1.74.0+ds1-23) ...
Selecting previously unselected package libboost-dev:amd64.
Preparing to unpack .../141-libboost-dev_1.74.0.3_amd64.deb ...
Unpacking libboost-dev:amd64 (1.74.0.3) ...
Selecting previously unselected package libcfitsio-dev:amd64.
Preparing to unpack .../142-libcfitsio-dev_4.3.0-2_amd64.deb ...
Unpacking libcfitsio-dev:amd64 (4.3.0-2) ...
Selecting previously unselected package libdav1d-dev:amd64.
Preparing to unpack .../143-libdav1d-dev_1.3.0-2_amd64.deb ...
Unpacking libdav1d-dev:amd64 (1.3.0-2) ...
Selecting previously unselected package libde265-dev:amd64.
Preparing to unpack .../144-libde265-dev_1.0.12-2_amd64.deb ...
Unpacking libde265-dev:amd64 (1.0.12-2) ...
Selecting previously unselected package libdeflate-dev:amd64.
Preparing to unpack .../145-libdeflate-dev_1.18-1_amd64.deb ...
Unpacking libdeflate-dev:amd64 (1.18-1) ...
Selecting previously unselected package libexpat1-dev:amd64.
Preparing to unpack .../146-libexpat1-dev_2.5.0-2_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.5.0-2) ...
Selecting previously unselected package libminizip-dev:amd64.
Preparing to unpack .../147-libminizip-dev_1%3a1.2.13.dfsg-3_amd64.deb ...
Unpacking libminizip-dev:amd64 (1:1.2.13.dfsg-3) ...
Selecting previously unselected package libfreexl-dev:amd64.
Preparing to unpack .../148-libfreexl-dev_2.0.0-1_amd64.deb ...
Unpacking libfreexl-dev:amd64 (2.0.0-1) ...
Selecting previously unselected package libfyba-dev:amd64.
Preparing to unpack .../149-libfyba-dev_4.1.1-8_amd64.deb ...
Unpacking libfyba-dev:amd64 (4.1.1-8) ...
Selecting previously unselected package libgeos-dev.
Preparing to unpack .../150-libgeos-dev_3.12.0-1_amd64.deb ...
Unpacking libgeos-dev (3.12.0-1) ...
Selecting previously unselected package libsqlite3-dev:amd64.
Preparing to unpack .../151-libsqlite3-dev_3.44.0-1_amd64.deb ...
Unpacking libsqlite3-dev:amd64 (3.44.0-1) ...
Selecting previously unselected package libjbig-dev:amd64.
Preparing to unpack .../152-libjbig-dev_2.1-6.1_amd64.deb ...
Unpacking libjbig-dev:amd64 (2.1-6.1) ...
Selecting previously unselected package liblzma-dev:amd64.
Preparing to unpack .../153-liblzma-dev_5.4.4-0.1_amd64.deb ...
Unpacking liblzma-dev:amd64 (5.4.4-0.1) ...
Selecting previously unselected package libzstd-dev:amd64.
Preparing to unpack .../154-libzstd-dev_1.5.5+dfsg2-2_amd64.deb ...
Unpacking libzstd-dev:amd64 (1.5.5+dfsg2-2) ...
Selecting previously unselected package libwebpdemux2:amd64.
Preparing to unpack .../155-libwebpdemux2_1.3.2-0.3_amd64.deb ...
Unpacking libwebpdemux2:amd64 (1.3.2-0.3) ...
Selecting previously unselected package libwebpmux3:amd64.
Preparing to unpack .../156-libwebpmux3_1.3.2-0.3_amd64.deb ...
Unpacking libwebpmux3:amd64 (1.3.2-0.3) ...
Selecting previously unselected package libwebpdecoder3:amd64.
Preparing to unpack .../157-libwebpdecoder3_1.3.2-0.3_amd64.deb ...
Unpacking libwebpdecoder3:amd64 (1.3.2-0.3) ...
Selecting previously unselected package libsharpyuv-dev:amd64.
Preparing to unpack .../158-libsharpyuv-dev_1.3.2-0.3_amd64.deb ...
Unpacking libsharpyuv-dev:amd64 (1.3.2-0.3) ...
Selecting previously unselected package libwebp-dev:amd64.
Preparing to unpack .../159-libwebp-dev_1.3.2-0.3_amd64.deb ...
Unpacking libwebp-dev:amd64 (1.3.2-0.3) ...
Selecting previously unselected package libtiffxx6:amd64.
Preparing to unpack .../160-libtiffxx6_4.5.1+git230720-1_amd64.deb ...
Unpacking libtiffxx6:amd64 (4.5.1+git230720-1) ...
Selecting previously unselected package liblerc-dev:amd64.
Preparing to unpack .../161-liblerc-dev_4.0.0+ds-3_amd64.deb ...
Unpacking liblerc-dev:amd64 (4.0.0+ds-3) ...
Selecting previously unselected package libtiff-dev:amd64.
Preparing to unpack .../162-libtiff-dev_4.5.1+git230720-1_amd64.deb ...
Unpacking libtiff-dev:amd64 (4.5.1+git230720-1) ...
Selecting previously unselected package libproj-dev:amd64.
Preparing to unpack .../163-libproj-dev_9.3.0-1_amd64.deb ...
Unpacking libproj-dev:amd64 (9.3.0-1) ...
Selecting previously unselected package libgeotiff-dev:amd64.
Preparing to unpack .../164-libgeotiff-dev_1.7.1-3_amd64.deb ...
Unpacking libgeotiff-dev:amd64 (1.7.1-3) ...
Selecting previously unselected package libgif-dev:amd64.
Preparing to unpack .../165-libgif-dev_5.2.1-2.5_amd64.deb ...
Unpacking libgif-dev:amd64 (5.2.1-2.5) ...
Selecting previously unselected package libicu-dev:amd64.
Preparing to unpack .../166-libicu-dev_72.1-4_amd64.deb ...
Unpacking libicu-dev:amd64 (72.1-4) ...
Selecting previously unselected package libxml2-dev:amd64.
Preparing to unpack .../167-libxml2-dev_2.9.14+dfsg-1.3_amd64.deb ...
Unpacking libxml2-dev:amd64 (2.9.14+dfsg-1.3) ...
Selecting previously unselected package libnetcdf-dev.
Preparing to unpack .../168-libnetcdf-dev_1%3a4.9.2-2_amd64.deb ...
Unpacking libnetcdf-dev (1:4.9.2-2) ...
Selecting previously unselected package libhdf4-alt-dev.
Preparing to unpack .../169-libhdf4-alt-dev_4.2.16-3_amd64.deb ...
Unpacking libhdf4-alt-dev (4.2.16-3) ...
Selecting previously unselected package libnuma1:amd64.
Preparing to unpack .../170-libnuma1_2.0.16-1_amd64.deb ...
Unpacking libnuma1:amd64 (2.0.16-1) ...
Selecting previously unselected package libx265-199:amd64.
Preparing to unpack .../171-libx265-199_3.5-2+b1_amd64.deb ...
Unpacking libx265-199:amd64 (3.5-2+b1) ...
Selecting previously unselected package libx265-dev:amd64.
Preparing to unpack .../172-libx265-dev_3.5-2+b1_amd64.deb ...
Unpacking libx265-dev:amd64 (3.5-2+b1) ...
Selecting previously unselected package libheif-dev:amd64.
Preparing to unpack .../173-libheif-dev_1.17.1-1+b1_amd64.deb ...
Unpacking libheif-dev:amd64 (1.17.1-1+b1) ...
Selecting previously unselected package libjson-c-dev:amd64.
Preparing to unpack .../174-libjson-c-dev_0.17-1_amd64.deb ...
Unpacking libjson-c-dev:amd64 (0.17-1) ...
Selecting previously unselected package libkmlconvenience1:amd64.
Preparing to unpack .../175-libkmlconvenience1_1.3.0-10_amd64.deb ...
Unpacking libkmlconvenience1:amd64 (1.3.0-10) ...
Selecting previously unselected package libkmlregionator1:amd64.
Preparing to unpack .../176-libkmlregionator1_1.3.0-10_amd64.deb ...
Unpacking libkmlregionator1:amd64 (1.3.0-10) ...
Selecting previously unselected package libkmlxsd1:amd64.
Preparing to unpack .../177-libkmlxsd1_1.3.0-10_amd64.deb ...
Unpacking libkmlxsd1:amd64 (1.3.0-10) ...
Selecting previously unselected package liburiparser-dev.
Preparing to unpack .../178-liburiparser-dev_0.9.7+dfsg-2_amd64.deb ...
Unpacking liburiparser-dev (0.9.7+dfsg-2) ...
Selecting previously unselected package libkml-dev:amd64.
Preparing to unpack .../179-libkml-dev_1.3.0-10_amd64.deb ...
Unpacking libkml-dev:amd64 (1.3.0-10) ...
Selecting previously unselected package libltdl-dev:amd64.
Preparing to unpack .../180-libltdl-dev_2.4.7-7_amd64.deb ...
Unpacking libltdl-dev:amd64 (2.4.7-7) ...
Selecting previously unselected package liblz4-dev:amd64.
Preparing to unpack .../181-liblz4-dev_1.9.4-1_amd64.deb ...
Unpacking liblz4-dev:amd64 (1.9.4-1) ...
Selecting previously unselected package libogdi-dev.
Preparing to unpack .../182-libogdi-dev_4.1.0+ds-6_amd64.deb ...
Unpacking libogdi-dev (4.1.0+ds-6) ...
Selecting previously unselected package libopenjp2-7-dev:amd64.
Preparing to unpack .../183-libopenjp2-7-dev_2.5.0-2_amd64.deb ...
Unpacking libopenjp2-7-dev:amd64 (2.5.0-2) ...
Selecting previously unselected package libpcre2-16-0:amd64.
Preparing to unpack .../184-libpcre2-16-0_10.42-4_amd64.deb ...
Unpacking libpcre2-16-0:amd64 (10.42-4) ...
Selecting previously unselected package libpcre2-32-0:amd64.
Preparing to unpack .../185-libpcre2-32-0_10.42-4_amd64.deb ...
Unpacking libpcre2-32-0:amd64 (10.42-4) ...
Selecting previously unselected package libpcre2-posix3:amd64.
Preparing to unpack .../186-libpcre2-posix3_10.42-4_amd64.deb ...
Unpacking libpcre2-posix3:amd64 (10.42-4) ...
Selecting previously unselected package libpcre2-dev:amd64.
Preparing to unpack .../187-libpcre2-dev_10.42-4_amd64.deb ...
Unpacking libpcre2-dev:amd64 (10.42-4) ...
Selecting previously unselected package libpng-dev:amd64.
Preparing to unpack .../188-libpng-dev_1.6.40-2_amd64.deb ...
Unpacking libpng-dev:amd64 (1.6.40-2) ...
Selecting previously unselected package libpoppler-dev:amd64.
Preparing to unpack .../189-libpoppler-dev_22.12.0-2+b1_amd64.deb ...
Unpacking libpoppler-dev:amd64 (22.12.0-2+b1) ...
Selecting previously unselected package libpoppler-private-dev:amd64.
Preparing to unpack .../190-libpoppler-private-dev_22.12.0-2+b1_amd64.deb ...
Unpacking libpoppler-private-dev:amd64 (22.12.0-2+b1) ...
Selecting previously unselected package libpq-dev.
Preparing to unpack .../191-libpq-dev_16.0-2_amd64.deb ...
Unpacking libpq-dev (16.0-2) ...
Selecting previously unselected package libqhull8.0:amd64.
Preparing to unpack .../192-libqhull8.0_2020.2-6_amd64.deb ...
Unpacking libqhull8.0:amd64 (2020.2-6) ...
Selecting previously unselected package libqhullcpp8.0:amd64.
Preparing to unpack .../193-libqhullcpp8.0_2020.2-6_amd64.deb ...
Unpacking libqhullcpp8.0:amd64 (2020.2-6) ...
Selecting previously unselected package libqhull-dev:amd64.
Preparing to unpack .../194-libqhull-dev_2020.2-6_amd64.deb ...
Unpacking libqhull-dev:amd64 (2020.2-6) ...
Selecting previously unselected package librttopo-dev:amd64.
Preparing to unpack .../195-librttopo-dev_1.1.0-3_amd64.deb ...
Unpacking librttopo-dev:amd64 (1.1.0-3) ...
Selecting previously unselected package libspatialite-dev:amd64.
Preparing to unpack .../196-libspatialite-dev_5.1.0-1_amd64.deb ...
Unpacking libspatialite-dev:amd64 (5.1.0-1) ...
Selecting previously unselected package libxerces-c-dev:amd64.
Preparing to unpack .../197-libxerces-c-dev_3.2.4+debian-1_amd64.deb ...
Unpacking libxerces-c-dev:amd64 (3.2.4+debian-1) ...
Selecting previously unselected package libodbccr2:amd64.
Preparing to unpack .../198-libodbccr2_2.3.12-1_amd64.deb ...
Unpacking libodbccr2:amd64 (2.3.12-1) ...
Selecting previously unselected package unixodbc-dev:amd64.
Preparing to unpack .../199-unixodbc-dev_2.3.12-1_amd64.deb ...
Unpacking unixodbc-dev:amd64 (2.3.12-1) ...
Selecting previously unselected package libgdal-dev.
Preparing to unpack .../200-libgdal-dev_3.8.0~rc1+dfsg-1~exp1_amd64.deb ...
Unpacking libgdal-dev (3.8.0~rc1+dfsg-1~exp1) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../201-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ...
Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
Selecting previously unselected package libjs-underscore.
Preparing to unpack .../202-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ...
Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
Selecting previously unselected package libjs-sphinxdoc.
Preparing to unpack .../203-libjs-sphinxdoc_7.2.6-2_all.deb ...
Unpacking libjs-sphinxdoc (7.2.6-2) ...
Selecting previously unselected package libpython3.11:amd64.
Preparing to unpack .../204-libpython3.11_3.11.6-3_amd64.deb ...
Unpacking libpython3.11:amd64 (3.11.6-3) ...
Selecting previously unselected package libpython3.11-dev:amd64.
Preparing to unpack .../205-libpython3.11-dev_3.11.6-3_amd64.deb ...
Unpacking libpython3.11-dev:amd64 (3.11.6-3) ...
Selecting previously unselected package libpython3-dev:amd64.
Preparing to unpack .../206-libpython3-dev_3.11.4-5+b1_amd64.deb ...
Unpacking libpython3-dev:amd64 (3.11.4-5+b1) ...
Selecting previously unselected package libpython3-all-dev:amd64.
Preparing to unpack .../207-libpython3-all-dev_3.11.4-5+b1_amd64.deb ...
Unpacking libpython3-all-dev:amd64 (3.11.4-5+b1) ...
Selecting previously unselected package python3-packaging.
Preparing to unpack .../208-python3-packaging_23.2-1_all.deb ...
Unpacking python3-packaging (23.2-1) ...
Selecting previously unselected package python3-pyproject-hooks.
Preparing to unpack .../209-python3-pyproject-hooks_1.0.0-2_all.deb ...
Unpacking python3-pyproject-hooks (1.0.0-2) ...
Selecting previously unselected package python3-toml.
Preparing to unpack .../210-python3-toml_0.10.2-1_all.deb ...
Unpacking python3-toml (0.10.2-1) ...
Selecting previously unselected package python3-wheel.
Preparing to unpack .../211-python3-wheel_0.41.2-1_all.deb ...
Unpacking python3-wheel (0.41.2-1) ...
Selecting previously unselected package python3-build.
Preparing to unpack .../212-python3-build_0.10.0-1_all.deb ...
Unpacking python3-build (0.10.0-1) ...
Selecting previously unselected package python3-installer.
Preparing to unpack .../213-python3-installer_0.7.0+dfsg1-2_all.deb ...
Unpacking python3-installer (0.7.0+dfsg1-2) ...
Selecting previously unselected package pybuild-plugin-pyproject.
Preparing to unpack .../214-pybuild-plugin-pyproject_6.20231107_all.deb ...
Unpacking pybuild-plugin-pyproject (6.20231107) ...
Selecting previously unselected package python3-affine.
Preparing to unpack .../215-python3-affine_2.4.0-1_all.deb ...
Unpacking python3-affine (2.4.0-1) ...
Selecting previously unselected package python3-all.
Preparing to unpack .../216-python3-all_3.11.4-5+b1_amd64.deb ...
Unpacking python3-all (3.11.4-5+b1) ...
Selecting previously unselected package python3.11-dev.
Preparing to unpack .../217-python3.11-dev_3.11.6-3_amd64.deb ...
Unpacking python3.11-dev (3.11.6-3) ...
Selecting previously unselected package python3-dev.
Preparing to unpack .../218-python3-dev_3.11.4-5+b1_amd64.deb ...
Unpacking python3-dev (3.11.4-5+b1) ...
Selecting previously unselected package python3-all-dev.
Preparing to unpack .../219-python3-all-dev_3.11.4-5+b1_amd64.deb ...
Unpacking python3-all-dev (3.11.4-5+b1) ...
Selecting previously unselected package python3-attr.
Preparing to unpack .../220-python3-attr_23.1.0-2_all.deb ...
Unpacking python3-attr (23.1.0-2) ...
Selecting previously unselected package python3-six.
Preparing to unpack .../221-python3-six_1.16.0-4_all.deb ...
Unpacking python3-six (1.16.0-4) ...
Selecting previously unselected package python3-dateutil.
Preparing to unpack .../222-python3-dateutil_2.8.2-3_all.deb ...
Unpacking python3-dateutil (2.8.2-3) ...
Selecting previously unselected package python3-jmespath.
Preparing to unpack .../223-python3-jmespath_1.0.1-1_all.deb ...
Unpacking python3-jmespath (1.0.1-1) ...
Selecting previously unselected package python3-urllib3.
Preparing to unpack .../224-python3-urllib3_1.26.18-1_all.deb ...
Unpacking python3-urllib3 (1.26.18-1) ...
Selecting previously unselected package python3-certifi.
Preparing to unpack .../225-python3-certifi_2023.7.22-1_all.deb ...
Unpacking python3-certifi (2023.7.22-1) ...
Selecting previously unselected package python3-charset-normalizer.
Preparing to unpack .../226-python3-charset-normalizer_3.3.0-1_all.deb ...
Unpacking python3-charset-normalizer (3.3.0-1) ...
Selecting previously unselected package python3-idna.
Preparing to unpack .../227-python3-idna_3.3-2_all.deb ...
Unpacking python3-idna (3.3-2) ...
Selecting previously unselected package python3-chardet.
Preparing to unpack .../228-python3-chardet_5.2.0+dfsg-1_all.deb ...
Unpacking python3-chardet (5.2.0+dfsg-1) ...
Selecting previously unselected package python3-requests.
Preparing to unpack .../229-python3-requests_2.31.0+dfsg-1_all.deb ...
Unpacking python3-requests (2.31.0+dfsg-1) ...
Selecting previously unselected package python3-botocore.
Preparing to unpack .../230-python3-botocore_1.31.49+repack-1_all.deb ...
Unpacking python3-botocore (1.31.49+repack-1) ...
Selecting previously unselected package python3-s3transfer.
Preparing to unpack .../231-python3-s3transfer_0.6.0-1_all.deb ...
Unpacking python3-s3transfer (0.6.0-1) ...
Selecting previously unselected package python3-boto3.
Preparing to unpack .../232-python3-boto3_1.28.49+dfsg-1_all.deb ...
Unpacking python3-boto3 (1.28.49+dfsg-1) ...
Selecting previously unselected package python3-colorama.
Preparing to unpack .../233-python3-colorama_0.4.6-4_all.deb ...
Unpacking python3-colorama (0.4.6-4) ...
Selecting previously unselected package python3-click.
Preparing to unpack .../234-python3-click_8.1.6-1_all.deb ...
Unpacking python3-click (8.1.6-1) ...
Selecting previously unselected package python3-click-plugins.
Preparing to unpack .../235-python3-click-plugins_1.1.1-4_all.deb ...
Unpacking python3-click-plugins (1.1.1-4) ...
Selecting previously unselected package python3-cligj.
Preparing to unpack .../236-python3-cligj_0.7.2-2_all.deb ...
Unpacking python3-cligj (0.7.2-2) ...
Selecting previously unselected package python3-sortedcontainers.
Preparing to unpack .../237-python3-sortedcontainers_2.4.0-2_all.deb ...
Unpacking python3-sortedcontainers (2.4.0-2) ...
Selecting previously unselected package python3-hypothesis.
Preparing to unpack .../238-python3-hypothesis_6.88.1-1_all.deb ...
Unpacking python3-hypothesis (6.88.1-1) ...
Selecting previously unselected package python3-iniconfig.
Preparing to unpack .../239-python3-iniconfig_1.1.1-2_all.deb ...
Unpacking python3-iniconfig (1.1.1-2) ...
Selecting previously unselected package python3-pluggy.
Preparing to unpack .../240-python3-pluggy_1.3.0-1_all.deb ...
Unpacking python3-pluggy (1.3.0-1) ...
Selecting previously unselected package python3-pyparsing.
Preparing to unpack .../241-python3-pyparsing_3.1.1-1_all.deb ...
Unpacking python3-pyparsing (3.1.1-1) ...
Selecting previously unselected package python3-pytest.
Preparing to unpack .../242-python3-pytest_7.4.3-1_all.deb ...
Unpacking python3-pytest (7.4.3-1) ...
Selecting previously unselected package python3-shapely.
Preparing to unpack .../243-python3-shapely_2.0.2-2_amd64.deb ...
Unpacking python3-shapely (2.0.2-2) ...
Selecting previously unselected package python3-snuggs.
Preparing to unpack .../244-python3-snuggs_1.4.7-4_all.deb ...
Unpacking python3-snuggs (1.4.7-4) ...
Setting up media-types (10.1.0) ...
Setting up libpipeline1:amd64 (1.5.7-1) ...
Setting up liblcms2-2:amd64 (2.14-2) ...
Setting up libsharpyuv0:amd64 (1.3.2-0.3) ...
Setting up libaom3:amd64 (3.7.0-1) ...
Setting up mysql-common (5.8+1.1.0) ...
update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode
Setting up libpsl5:amd64 (0.21.2-1+b1) ...
Setting up libboost1.74-dev:amd64 (1.74.0+ds1-23) ...
Setting up libicu72:amd64 (72.1-4) ...
Setting up libzstd-dev:amd64 (1.5.5+dfsg2-2) ...
Setting up liblerc4:amd64 (4.0.0+ds-3) ...
Setting up proj-data (9.3.0-1) ...
Setting up bsdextrautils (2.39.2-5) ...
Setting up hdf5-helpers (1.10.10+repack-3) ...
Setting up libmagic-mgc (1:5.45-2) ...
Setting up libogdi4.1 (4.1.0+ds-6) ...
Setting up libqhull8.0:amd64 (2020.2-6) ...
Setting up libminizip1:amd64 (1:1.2.13.dfsg-3) ...
Setting up libarchive-zip-perl (1.68-1) ...
Setting up libpython3.11-stdlib:amd64 (3.11.6-3) ...
Setting up libdebhelper-perl (13.11.7) ...
Setting up libbrotli1:amd64 (1.1.0-1) ...
Setting up libnghttp2-14:amd64 (1.58.0-1) ...
Setting up libmagic1:amd64 (1:5.45-2) ...
Setting up libpq5:amd64 (16.0-2) ...
Setting up libdeflate0:amd64 (1.18-1) ...
Setting up libwebpdecoder3:amd64 (1.3.2-0.3) ...
Setting up gettext-base (0.21-13+b1) ...
Setting up m4 (1.4.19-4) ...
Setting up libqhull-r8.0:amd64 (2020.2-6) ...
Setting up file (1:5.45-2) ...
Setting up libgeos3.12.0:amd64 (3.12.0-1) ...
Setting up libjbig0:amd64 (2.1-6.1) ...
Setting up libpcre2-16-0:amd64 (10.42-4) ...
Setting up libaec0:amd64 (1.1.2-1) ...
Setting up gdal-data (3.8.0~rc1+dfsg-1~exp1) ...
Setting up libsnappy1v5:amd64 (1.1.10-1) ...
Setting up libaom-dev:amd64 (3.7.0-1) ...
Setting up mariadb-common (1:10.11.5-3) ...
update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode
Setting up libminizip-dev:amd64 (1:1.2.13.dfsg-3) ...
Setting up autotools-dev (20220109.1) ...
Setting up libpcre2-32-0:amd64 (10.42-4) ...
Setting up libblas3:amd64 (3.11.0-2) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
Setting up libexpat1-dev:amd64 (2.5.0-2) ...
Setting up libjpeg62-turbo:amd64 (1:2.1.5-2) ...
Setting up libsqlite3-dev:amd64 (3.44.0-1) ...
Setting up libjpeg62-turbo-dev:amd64 (1:2.1.5-2) ...
Setting up libnspr4:amd64 (2:4.35-1.1) ...
Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ...
Setting up fonts-dejavu-mono (2.37-8) ...
Setting up libssl-dev:amd64 (3.0.12-1) ...
Setting up libpng16-16:amd64 (1.6.40-2) ...
Setting up autopoint (0.21-13) ...
Setting up icu-devtools (72.1-4) ...
Setting up liblz4-dev:amd64 (1.9.4-1) ...
Setting up libgeos-c1v5:amd64 (3.12.0-1) ...
Setting up libmariadb3:amd64 (1:10.11.5-3) ...
Setting up fonts-dejavu-core (2.37-8) ...
Setting up unixodbc-common (2.3.12-1) ...
Setting up libqhullcpp8.0:amd64 (2020.2-6) ...
Setting up liblerc-dev:amd64 (4.0.0+ds-3) ...
Setting up libltdl7:amd64 (2.4.7-7) ...
Setting up libqhull-dev:amd64 (2020.2-6) ...
Setting up libgfortran5:amd64 (13.2.0-6) ...
Setting up autoconf (2.71-3) ...
Setting up libhdf4-0-alt (4.2.16-3) ...
Setting up libwebp7:amd64 (1.3.2-0.3) ...
Setting up liblzma-dev:amd64 (5.4.4-0.1) ...
Setting up libgif7:amd64 (5.2.1-2.5) ...
Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-3) ...
Setting up libodbc2:amd64 (2.3.12-1) ...
Setting up liburiparser1:amd64 (0.9.7+dfsg-2) ...
Setting up libnuma1:amd64 (2.0.16-1) ...
Setting up libpcre2-posix3:amd64 (10.42-4) ...
Setting up librttopo1:amd64 (1.1.0-3) ...
Setting up libdav1d7:amd64 (1.3.0-2) ...
Setting up libfreexl1:amd64 (2.0.0-1) ...
Setting up libgif-dev:amd64 (5.2.1-2.5) ...
Setting up libtiff6:amd64 (4.5.1+git230720-1) ...
Setting up libfyba0:amd64 (4.1.1-8) ...
Setting up libuchardet0:amd64 (0.0.7-1) ...
Setting up libkmlbase1:amd64 (1.3.0-10) ...
Setting up libblosc1:amd64 (1.21.5+ds-1) ...
Setting up libopenjp2-7:amd64 (2.5.0-2) ...
Setting up libsub-override-perl (0.09-4) ...
Setting up libssh2-1:amd64 (1.11.0-2) ...
Setting up libboost-dev:amd64 (1.74.0.3) ...
Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
Setting up libde265-0:amd64 (1.0.12-2) ...
Setting up libsharpyuv-dev:amd64 (1.3.2-0.3) ...
Setting up openssl (3.0.12-1) ...
Setting up libwebpmux3:amd64 (1.3.2-0.3) ...
Setting up libtiffxx6:amd64 (4.5.1+git230720-1) ...
Setting up libdeflate-dev:amd64 (1.18-1) ...
Setting up libelf1:amd64 (0.189-4) ...
Setting up libjson-c5:amd64 (0.17-1) ...
Setting up libogdi-dev (4.1.0+ds-6) ...
Setting up libicu-dev:amd64 (72.1-4) ...
Setting up libxml2:amd64 (2.9.14+dfsg-1.3) ...
Setting up libblas-dev:amd64 (3.11.0-2) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
Setting up libsz2:amd64 (1.1.2-1) ...
Setting up libpython3-stdlib:amd64 (3.11.4-5+b1) ...
Setting up libkmlxsd1:amd64 (1.3.0-10) ...
Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
Setting up libodbccr2:amd64 (2.3.12-1) ...
Setting up gdal-plugins (3.8.0~rc1+dfsg-1~exp1) ...
Setting up libkmldom1:amd64 (1.3.0-10) ...
Setting up automake (1:1.16.5-1.3) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
Setting up libfile-stripnondeterminism-perl (1.13.1-1) ...
Setting up librttopo-dev:amd64 (1.1.0-3) ...
Setting up python3.11 (3.11.6-3) ...
Setting up libodbcinst2:amd64 (2.3.12-1) ...
Setting up liblapack3:amd64 (3.11.0-2) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
Setting up gettext (0.21-13+b1) ...
Setting up libkmlengine1:amd64 (1.3.0-10) ...
Setting up libpython3.11:amd64 (3.11.6-3) ...
Setting up libpcre2-dev:amd64 (10.42-4) ...
Setting up libkmlconvenience1:amd64 (1.3.0-10) ...
Setting up libtool (2.4.7-7) ...
Setting up libblosc-dev:amd64 (1.21.5+ds-1) ...
Setting up fontconfig-config (2.14.2-6) ...
Setting up libjson-c-dev:amd64 (0.17-1) ...
Setting up libfreexl-dev:amd64 (2.0.0-1) ...
Setting up libfyba-dev:amd64 (4.1.1-8) ...
Setting up libwebpdemux2:amd64 (1.3.2-0.3) ...
Setting up libpng-dev:amd64 (1.6.40-2) ...
Setting up libaec-dev:amd64 (1.1.2-1) ...
Setting up libarpack2:amd64 (3.9.1-1) ...
Setting up libjpeg-dev:amd64 (1:2.1.5-2) ...
Setting up libjbig-dev:amd64 (2.1-6.1) ...
Setting up libpq-dev (16.0-2) ...
Setting up libcurl3-gnutls:amd64 (8.4.0-2) ...
Setting up python3 (3.11.4-5+b1) ...
Setting up libnss3:amd64 (2:3.94-1) ...
Setting up python3-sortedcontainers (2.4.0-2) ...
Setting up libcfitsio10:amd64 (4.3.0-2) ...
Setting up libsuperlu6:amd64 (6.0.1+dfsg1-1) ...
Setting up intltool-debian (0.35.0+20060710.6) ...
Setting up liburiparser-dev (0.9.7+dfsg-2) ...
Setting up python3-six (1.16.0-4) ...
Setting up dh-autoreconf (20) ...
Setting up libltdl-dev:amd64 (2.4.7-7) ...
Setting up ca-certificates (20230311) ...
Updating certificates in /etc/ssl/certs...
140 added, 0 removed; done.
Setting up libxml2-dev:amd64 (2.9.14+dfsg-1.3) ...
Setting up libwebp-dev:amd64 (1.3.2-0.3) ...
Setting up python3-packaging (23.2-1) ...
Setting up python3-pyproject-hooks (1.0.0-2) ...
Setting up python3-pyparsing (3.1.1-1) ...
Setting up libfreetype6:amd64 (2.13.2+dfsg-1) ...
Setting up python3-certifi (2023.7.22-1) ...
Setting up libtiff-dev:amd64 (4.5.1+git230720-1) ...
Setting up libde265-dev:amd64 (1.0.12-2) ...
Setting up libopenjp2-7-dev:amd64 (2.5.0-2) ...
Setting up libpython3.11-dev:amd64 (3.11.6-3) ...
Setting up libkmlregionator1:amd64 (1.3.0-10) ...
Setting up python3-jmespath (1.0.1-1) ...
Setting up libgeos-dev (3.12.0-1) ...
Setting up libdav1d-dev:amd64 (1.3.0-2) ...
Setting up liblapack-dev:amd64 (3.11.0-2) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
Setting up python3-idna (3.3-2) ...
Setting up cython3 (0.29.36-1) ...
Setting up libjs-sphinxdoc (7.2.6-2) ...
Setting up python3-toml (0.10.2-1) ...
Setting up python3-installer (0.7.0+dfsg1-2) ...
Setting up python3-urllib3 (1.26.18-1) ...
Setting up python3-pluggy (1.3.0-1) ...
Setting up libx265-199:amd64 (3.5-2+b1) ...
Setting up libmariadb-dev (1:10.11.5-3) ...
Setting up dh-strip-nondeterminism (1.13.1-1) ...
Setting up dwz (0.15-1) ...
Setting up groff-base (1.23.0-3) ...
Setting up libcurl4:amd64 (8.4.0-2) ...
Setting up python3-dateutil (2.8.2-3) ...
Setting up libfontconfig1:amd64 (2.14.2-6) ...
Setting up python3-affine (2.4.0-1) ...
Setting up libsuperlu-dev:amd64 (6.0.1+dfsg1-1) ...
Setting up python3-lib2to3 (3.11.5-1) ...
Setting up unixodbc-dev:amd64 (2.3.12-1) ...
Setting up libarmadillo12 (1:12.6.4+dfsg-1) ...
Setting up python3-pkg-resources (68.1.2-2) ...
Setting up python3-distutils (3.11.5-1) ...
Setting up libkml-dev:amd64 (1.3.0-10) ...
Setting up libmariadb-dev-compat (1:10.11.5-3) ...
Setting up python3-iniconfig (1.1.1-2) ...
Setting up python3-attr (23.1.0-2) ...
Setting up libarpack2-dev:amd64 (3.9.1-1) ...
Setting up libcfitsio-dev:amd64 (4.3.0-2) ...
Setting up libpython3-dev:amd64 (3.11.4-5+b1) ...
Setting up libxerces-c3.2:amd64 (3.2.4+debian-1) ...
Setting up python3-setuptools (68.1.2-2) ...
Setting up libproj25:amd64 (9.3.0-1) ...
Setting up python3-colorama (0.4.6-4) ...
Setting up python3.11-dev (3.11.6-3) ...
Setting up python3-charset-normalizer (3.3.0-1) ...
Setting up python3-pytest (7.4.3-1) ...
Setting up po-debconf (1.0.21+nmu1) ...
Setting up python3-hypothesis (6.88.1-1) ...
Setting up python3-all (3.11.4-5+b1) ...
Setting up python3-click (8.1.6-1) ...
Setting up man-db (2.12.0-1) ...
Building database of manual pages ...
Setting up python3-wheel (0.41.2-1) ...
Setting up libgeotiff5:amd64 (1.7.1-3) ...
Setting up python3-chardet (5.2.0+dfsg-1) ...
Setting up libcurl4-openssl-dev:amd64 (8.4.0-2) ...
Setting up libxerces-c-dev:amd64 (3.2.4+debian-1) ...
Setting up libpython3-all-dev:amd64 (3.11.4-5+b1) ...
Setting up libspatialite8:amd64 (5.1.0-1) ...
Setting up python3-dev (3.11.4-5+b1) ...
Setting up libx265-dev:amd64 (3.5-2+b1) ...
Setting up python3-requests (2.31.0+dfsg-1) ...
Setting up libproj-dev:amd64 (9.3.0-1) ...
Setting up python3-click-plugins (1.1.1-4) ...
Setting up libspatialite-dev:amd64 (5.1.0-1) ...
Setting up python3-numpy (1:1.24.2-1) ...
Setting up libpoppler126:amd64 (22.12.0-2+b1) ...
Setting up libhdf5-103-1:amd64 (1.10.10+repack-3) ...
Setting up libhdf5-cpp-103-1:amd64 (1.10.10+repack-3) ...
Setting up python3-build (0.10.0-1) ...
Setting up libhdf5-hl-100:amd64 (1.10.10+repack-3) ...
Setting up default-libmysqlclient-dev:amd64 (1.1.0) ...
Setting up dh-python (6.20231107) ...
Setting up libpoppler-dev:amd64 (22.12.0-2+b1) ...
Setting up python3-all-dev (3.11.4-5+b1) ...
Setting up python3-shapely (2.0.2-2) ...
Setting up libgeotiff-dev:amd64 (1.7.1-3) ...
Setting up pybuild-plugin-pyproject (6.20231107) ...
Setting up python3-cligj (0.7.2-2) ...
Setting up libpoppler-private-dev:amd64 (22.12.0-2+b1) ...
Setting up debhelper (13.11.7) ...
Setting up python3-snuggs (1.4.7-4) ...
Setting up libhdf5-hl-cpp-100:amd64 (1.10.10+repack-3) ...
Setting up python3-botocore (1.31.49+repack-1) ...
Setting up libhdf5-fortran-102:amd64 (1.10.10+repack-3) ...
Setting up libnetcdf19:amd64 (1:4.9.2-2) ...
Setting up libhdf5-hl-fortran-100:amd64 (1.10.10+repack-3) ...
Setting up python3-s3transfer (0.6.0-1) ...
Setting up libhdf5-dev (1.10.10+repack-3) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/pkgconfig/hdf5-serial.pc to provide /usr/lib/x86_64-linux-gnu/pkgconfig/hdf5.pc (hdf5.pc) in auto mode
Setting up libnetcdf-dev (1:4.9.2-2) ...
Setting up python3-boto3 (1.28.49+dfsg-1) ...
Setting up libarmadillo-dev (1:12.6.4+dfsg-1) ...
Setting up libhdf4-alt-dev (4.2.16-3) ...
Setting up libheif-plugin-dav1d:amd64 (1.17.1-1+b1) ...
Setting up libheif-plugin-libde265:amd64 (1.17.1-1+b1) ...
Setting up libheif1:amd64 (1.17.1-1+b1) ...
Setting up libheif-dev:amd64 (1.17.1-1+b1) ...
Setting up libgdal34 (3.8.0~rc1+dfsg-1~exp1) ...
Setting up python3-gdal (3.8.0~rc1+dfsg-1~exp1) ...
Setting up gdal-bin (3.8.0~rc1+dfsg-1~exp1) ...
Setting up libgdal-dev (3.8.0~rc1+dfsg-1~exp1) ...
Processing triggers for libc-bin (2.37-12) ...
Processing triggers for ca-certificates (20230311) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
Reading package lists...
Building dependency tree...
Reading state information...
Reading extended state information...
Initializing package states...
Writing extended state information...
Building tag database...
 -> Finished parsing the build-deps
I: Copying back the cached apt archive contents
I: Building the package
I: Running cd /build/rasterio-1.3.9/ && env PATH="/usr/sbin:/usr/bin:/sbin:/bin" HOME="/nonexistent" dpkg-buildpackage -us -uc  && env PATH="/usr/sbin:/usr/bin:/sbin:/bin" HOME="/nonexistent" dpkg-genchanges -S  > ../rasterio_1.3.9-2_source.changes
dpkg-buildpackage: info: source package rasterio
dpkg-buildpackage: info: source version 1.3.9-2
dpkg-buildpackage: info: source distribution UNRELEASED
dpkg-buildpackage: info: source changed by Bas Couwenberg <sebastic at debian.org>
 dpkg-source --before-build .
dpkg-buildpackage: info: host architecture amd64
 debian/rules clean
dh clean --buildsystem pybuild
   dh_auto_clean -O--buildsystem=pybuild
   dh_autoreconf_clean -O--buildsystem=pybuild
   dh_clean -O--buildsystem=pybuild
 dpkg-source -b .
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building rasterio using existing ./rasterio_1.3.9.orig.tar.gz
dpkg-source: info: using patch list from debian/patches/series
dpkg-source: info: building rasterio in rasterio_1.3.9-2.debian.tar.xz
dpkg-source: info: building rasterio in rasterio_1.3.9-2.dsc
 debian/rules binary
dh binary --buildsystem pybuild
   dh_update_autotools_config -O--buildsystem=pybuild
   dh_autoreconf -O--buildsystem=pybuild
   dh_auto_configure -O--buildsystem=pybuild
   dh_auto_build -O--buildsystem=pybuild
I: pybuild plugin_pyproject:110: Building wheel for python3.11 with "build" module
I: pybuild base:310: python3.11 -m build --skip-dependency-check --no-isolation --wheel --outdir /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio 
* Building wheel...
<string>:22: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
INFO:root:GDAL API version obtained from gdal-config: 3.8.0
/usr/lib/python3/dist-packages/setuptools/_distutils/extension.py:134: UserWarning: Unknown Extension options: 'cython_compile_time_env'
  warnings.warn(msg)
warning: rasterio/gdal.pxi:18:4: 'CPLErr' redeclared 
warning: rasterio/gdal.pxi:72:4: 'VSIRangeStatus' redeclared 
warning: rasterio/gdal.pxi:182:4: 'OSRAxisMappingStrategy' redeclared 
warning: rasterio/gdal.pxi:225:4: 'GDALDataType' redeclared 
warning: rasterio/gdal.pxi:243:4: 'GDALAccess' redeclared 
warning: rasterio/gdal.pxi:247:4: 'GDALRWFlag' redeclared 
warning: rasterio/gdal.pxi:251:4: 'GDALRIOResampleAlg' redeclared 
warning: rasterio/gdal.pxi:261:4: 'GDALColorInterp' redeclared 
warning: rasterio/gdal.pxi:549:4: 'GDALResampleAlg' redeclared 
warning: rasterio/gdal.pxi:19:8: 'CE_None' redeclared 
warning: rasterio/gdal.pxi:20:8: 'CE_Debug' redeclared 
warning: rasterio/gdal.pxi:21:8: 'CE_Warning' redeclared 
warning: rasterio/gdal.pxi:22:8: 'CE_Failure' redeclared 
warning: rasterio/gdal.pxi:23:8: 'CE_Fatal' redeclared 
warning: rasterio/gdal.pxi:25:4: 'CPLErrorNum' redeclared 
warning: rasterio/gdal.pxi:29:4: 'CPLErrorHandler' redeclared 
warning: rasterio/gdal.pxi:34:30: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:35:28: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:37:29: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:42:4: 'GDALProgressFunc' redeclared 
warning: rasterio/gdal.pxi:69:4: 'vsi_l_offset' redeclared 
warning: rasterio/gdal.pxi:70:4: 'VSILFILE' redeclared 
warning: rasterio/gdal.pxi:71:4: 'VSIStatBufL' redeclared 
warning: rasterio/gdal.pxi:73:8: 'VSI_RANGE_STATUS_UNKNOWN' redeclared 
warning: rasterio/gdal.pxi:74:8: 'VSI_RANGE_STATUS_DATA' redeclared 
warning: rasterio/gdal.pxi:75:8: 'VSI_RANGE_STATUS_HOLE' redeclared 
warning: rasterio/gdal.pxi:79:4: 'VSIFilesystemPluginStatCallback' redeclared 
warning: rasterio/gdal.pxi:80:4: 'VSIFilesystemPluginUnlinkCallback' redeclared 
warning: rasterio/gdal.pxi:81:4: 'VSIFilesystemPluginRenameCallback' redeclared 
warning: rasterio/gdal.pxi:82:4: 'VSIFilesystemPluginMkdirCallback' redeclared 
warning: rasterio/gdal.pxi:83:4: 'VSIFilesystemPluginRmdirCallback' redeclared 
warning: rasterio/gdal.pxi:84:4: 'VSIFilesystemPluginReadDirCallback' redeclared 
warning: rasterio/gdal.pxi:85:4: 'VSIFilesystemPluginSiblingFilesCallback' redeclared 
warning: rasterio/gdal.pxi:86:4: 'VSIFilesystemPluginOpenCallback' redeclared 
warning: rasterio/gdal.pxi:88:4: 'VSIFilesystemPluginTellCallback' redeclared 
warning: rasterio/gdal.pxi:89:4: 'VSIFilesystemPluginSeekCallback' redeclared 
warning: rasterio/gdal.pxi:90:4: 'VSIFilesystemPluginReadCallback' redeclared 
warning: rasterio/gdal.pxi:91:4: 'VSIFilesystemPluginReadMultiRangeCallback' redeclared 
warning: rasterio/gdal.pxi:92:4: 'VSIFilesystemPluginGetRangeStatusCallback' redeclared 
warning: rasterio/gdal.pxi:93:4: 'VSIFilesystemPluginEofCallback' redeclared 
warning: rasterio/gdal.pxi:94:4: 'VSIFilesystemPluginWriteCallback' redeclared 
warning: rasterio/gdal.pxi:95:4: 'VSIFilesystemPluginFlushCallback' redeclared 
warning: rasterio/gdal.pxi:96:4: 'VSIFilesystemPluginTruncateCallback' redeclared 
warning: rasterio/gdal.pxi:97:4: 'VSIFilesystemPluginCloseCallback' redeclared 
warning: rasterio/gdal.pxi:149:4: 'OGRErr' redeclared 
warning: rasterio/gdal.pxi:150:4: 'OGRCoordinateTransformationH' redeclared 
warning: rasterio/gdal.pxi:151:4: 'OGRSpatialReferenceH' redeclared 
warning: rasterio/gdal.pxi:183:8: 'OAMS_TRADITIONAL_GIS_ORDER' redeclared 
warning: rasterio/gdal.pxi:186:34: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:214:4: 'GDALMajorObjectH' redeclared 
warning: rasterio/gdal.pxi:215:4: 'GDALDatasetH' redeclared 
warning: rasterio/gdal.pxi:216:4: 'GDALRasterBandH' redeclared 
warning: rasterio/gdal.pxi:217:4: 'GDALDriverH' redeclared 
warning: rasterio/gdal.pxi:218:4: 'GDALColorTableH' redeclared 
warning: rasterio/gdal.pxi:219:4: 'GDALRasterAttributeTableH' redeclared 
warning: rasterio/gdal.pxi:220:4: 'GDALAsyncReaderH' redeclared 
warning: rasterio/gdal.pxi:222:4: 'GSpacing' redeclared 
warning: rasterio/gdal.pxi:223:4: 'GIntBig' redeclared 
warning: rasterio/gdal.pxi:226:8: 'GDT_Unknown' redeclared 
warning: rasterio/gdal.pxi:227:8: 'GDT_Byte' redeclared 
warning: rasterio/gdal.pxi:228:8: 'GDT_Int8' redeclared 
warning: rasterio/gdal.pxi:229:8: 'GDT_UInt16' redeclared 
warning: rasterio/gdal.pxi:230:8: 'GDT_Int16' redeclared 
warning: rasterio/gdal.pxi:231:8: 'GDT_UInt32' redeclared 
warning: rasterio/gdal.pxi:232:8: 'GDT_Int32' redeclared 
warning: rasterio/gdal.pxi:233:8: 'GDT_UInt64' redeclared 
warning: rasterio/gdal.pxi:234:8: 'GDT_Int64' redeclared 
warning: rasterio/gdal.pxi:235:8: 'GDT_Float32' redeclared 
warning: rasterio/gdal.pxi:236:8: 'GDT_Float64' redeclared 
warning: rasterio/gdal.pxi:237:8: 'GDT_CInt16' redeclared 
warning: rasterio/gdal.pxi:238:8: 'GDT_CInt32' redeclared 
warning: rasterio/gdal.pxi:239:8: 'GDT_CFloat32' redeclared 
warning: rasterio/gdal.pxi:240:8: 'GDT_CFloat64' redeclared 
warning: rasterio/gdal.pxi:241:8: 'GDT_TypeCount' redeclared 
warning: rasterio/gdal.pxi:244:8: 'GA_ReadOnly' redeclared 
warning: rasterio/gdal.pxi:245:8: 'GA_Update' redeclared 
warning: rasterio/gdal.pxi:248:8: 'GF_Read' redeclared 
warning: rasterio/gdal.pxi:249:8: 'GF_Write' redeclared 
warning: rasterio/gdal.pxi:252:8: 'GRIORA_NearestNeighbour' redeclared 
warning: rasterio/gdal.pxi:253:8: 'GRIORA_Bilinear' redeclared 
warning: rasterio/gdal.pxi:254:8: 'GRIORA_Cubic' redeclared 
warning: rasterio/gdal.pxi:255:8: 'GRIORA_CubicSpline' redeclared 
warning: rasterio/gdal.pxi:256:8: 'GRIORA_Lanczos' redeclared 
warning: rasterio/gdal.pxi:257:8: 'GRIORA_Average' redeclared 
warning: rasterio/gdal.pxi:258:8: 'GRIORA_Mode' redeclared 
warning: rasterio/gdal.pxi:259:8: 'GRIORA_Gauss' redeclared 
warning: rasterio/gdal.pxi:262:8: 'GCI_Undefined' redeclared 
warning: rasterio/gdal.pxi:263:8: 'GCI_GrayIndex' redeclared 
warning: rasterio/gdal.pxi:264:8: 'GCI_PaletteIndex' redeclared 
warning: rasterio/gdal.pxi:265:8: 'GCI_RedBand' redeclared 
warning: rasterio/gdal.pxi:266:8: 'GCI_GreenBand' redeclared 
warning: rasterio/gdal.pxi:267:8: 'GCI_BlueBand' redeclared 
warning: rasterio/gdal.pxi:268:8: 'GCI_AlphaBand' redeclared 
warning: rasterio/gdal.pxi:269:8: 'GCI_HueBand' redeclared 
warning: rasterio/gdal.pxi:270:8: 'GCI_SaturationBand' redeclared 
warning: rasterio/gdal.pxi:271:8: 'GCI_LightnessBand' redeclared 
warning: rasterio/gdal.pxi:272:8: 'GCI_CyanBand' redeclared 
warning: rasterio/gdal.pxi:273:8: 'GCI_YCbCr_YBand' redeclared 
warning: rasterio/gdal.pxi:274:8: 'GCI_YCbCr_CbBand' redeclared 
warning: rasterio/gdal.pxi:275:8: 'GCI_YCbCr_CrBand' redeclared 
warning: rasterio/gdal.pxi:276:8: 'GCI_Max' redeclared 
warning: rasterio/gdal.pxi:326:25: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:328:31: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:342:32: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:354:32: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:358:34: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:371:25: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:374:27: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:397:40: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:407:22: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:418:28: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:420:32: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:424:29: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:425:30: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:435:4: 'OGRLayerH' redeclared 
warning: rasterio/gdal.pxi:436:4: 'OGRDataSourceH' redeclared 
warning: rasterio/gdal.pxi:437:4: 'OGRSFDriverH' redeclared 
warning: rasterio/gdal.pxi:438:4: 'OGRFieldDefnH' redeclared 
warning: rasterio/gdal.pxi:439:4: 'OGRFeatureDefnH' redeclared 
warning: rasterio/gdal.pxi:440:4: 'OGRFeatureH' redeclared 
warning: rasterio/gdal.pxi:441:4: 'OGRGeometryH' redeclared 
warning: rasterio/gdal.pxi:550:8: 'GRA_NearestNeighbour' redeclared 
warning: rasterio/gdal.pxi:551:8: 'GRA_Bilinear' redeclared 
warning: rasterio/gdal.pxi:552:8: 'GRA_Cubic' redeclared 
warning: rasterio/gdal.pxi:553:8: 'GRA_CubicSpline' redeclared 
warning: rasterio/gdal.pxi:554:8: 'GRA_Lanczos' redeclared 
warning: rasterio/gdal.pxi:555:8: 'GRA_Average' redeclared 
warning: rasterio/gdal.pxi:556:8: 'GRA_Mode' redeclared 
warning: rasterio/gdal.pxi:558:4: 'GDALMaskFunc' redeclared 
warning: rasterio/gdal.pxi:563:4: 'GDALTransformerFunc' redeclared 
warning: rasterio/gdal.pxi:622:40: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:635:46: Function signature does not match previous declaration
warning: rasterio/gdal.pxi:18:4: 'CPLErr' redeclared 
warning: rasterio/gdal.pxi:72:4: 'VSIRangeStatus' redeclared 
warning: rasterio/gdal.pxi:182:4: 'OSRAxisMappingStrategy' redeclared 
warning: rasterio/gdal.pxi:225:4: 'GDALDataType' redeclared 
warning: rasterio/gdal.pxi:243:4: 'GDALAccess' redeclared 
warning: rasterio/gdal.pxi:247:4: 'GDALRWFlag' redeclared 
warning: rasterio/gdal.pxi:251:4: 'GDALRIOResampleAlg' redeclared 
warning: rasterio/gdal.pxi:261:4: 'GDALColorInterp' redeclared 
warning: rasterio/gdal.pxi:549:4: 'GDALResampleAlg' redeclared 
warning: rasterio/gdal.pxi:19:8: 'CE_None' redeclared 
warning: rasterio/gdal.pxi:20:8: 'CE_Debug' redeclared 
warning: rasterio/gdal.pxi:21:8: 'CE_Warning' redeclared 
warning: rasterio/gdal.pxi:22:8: 'CE_Failure' redeclared 
warning: rasterio/gdal.pxi:23:8: 'CE_Fatal' redeclared 
warning: rasterio/gdal.pxi:25:4: 'CPLErrorNum' redeclared 
warning: rasterio/gdal.pxi:29:4: 'CPLErrorHandler' redeclared 
warning: rasterio/gdal.pxi:42:4: 'GDALProgressFunc' redeclared 
warning: rasterio/gdal.pxi:69:4: 'vsi_l_offset' redeclared 
warning: rasterio/gdal.pxi:70:4: 'VSILFILE' redeclared 
warning: rasterio/gdal.pxi:71:4: 'VSIStatBufL' redeclared 
warning: rasterio/gdal.pxi:73:8: 'VSI_RANGE_STATUS_UNKNOWN' redeclared 
warning: rasterio/gdal.pxi:74:8: 'VSI_RANGE_STATUS_DATA' redeclared 
warning: rasterio/gdal.pxi:75:8: 'VSI_RANGE_STATUS_HOLE' redeclared 
warning: rasterio/gdal.pxi:79:4: 'VSIFilesystemPluginStatCallback' redeclared 
warning: rasterio/gdal.pxi:80:4: 'VSIFilesystemPluginUnlinkCallback' redeclared 
warning: rasterio/gdal.pxi:81:4: 'VSIFilesystemPluginRenameCallback' redeclared 
warning: rasterio/gdal.pxi:82:4: 'VSIFilesystemPluginMkdirCallback' redeclared 
warning: rasterio/gdal.pxi:83:4: 'VSIFilesystemPluginRmdirCallback' redeclared 
warning: rasterio/gdal.pxi:84:4: 'VSIFilesystemPluginReadDirCallback' redeclared 
warning: rasterio/gdal.pxi:85:4: 'VSIFilesystemPluginSiblingFilesCallback' redeclared 
warning: rasterio/gdal.pxi:86:4: 'VSIFilesystemPluginOpenCallback' redeclared 
warning: rasterio/gdal.pxi:88:4: 'VSIFilesystemPluginTellCallback' redeclared 
warning: rasterio/gdal.pxi:89:4: 'VSIFilesystemPluginSeekCallback' redeclared 
warning: rasterio/gdal.pxi:90:4: 'VSIFilesystemPluginReadCallback' redeclared 
warning: rasterio/gdal.pxi:91:4: 'VSIFilesystemPluginReadMultiRangeCallback' redeclared 
warning: rasterio/gdal.pxi:92:4: 'VSIFilesystemPluginGetRangeStatusCallback' redeclared 
warning: rasterio/gdal.pxi:93:4: 'VSIFilesystemPluginEofCallback' redeclared 
warning: rasterio/gdal.pxi:94:4: 'VSIFilesystemPluginWriteCallback' redeclared 
warning: rasterio/gdal.pxi:95:4: 'VSIFilesystemPluginFlushCallback' redeclared 
warning: rasterio/gdal.pxi:96:4: 'VSIFilesystemPluginTruncateCallback' redeclared 
warning: rasterio/gdal.pxi:97:4: 'VSIFilesystemPluginCloseCallback' redeclared 
warning: rasterio/gdal.pxi:149:4: 'OGRErr' redeclared 
warning: rasterio/gdal.pxi:150:4: 'OGRCoordinateTransformationH' redeclared 
warning: rasterio/gdal.pxi:151:4: 'OGRSpatialReferenceH' redeclared 
warning: rasterio/gdal.pxi:183:8: 'OAMS_TRADITIONAL_GIS_ORDER' redeclared 
warning: rasterio/gdal.pxi:214:4: 'GDALMajorObjectH' redeclared 
warning: rasterio/gdal.pxi:215:4: 'GDALDatasetH' redeclared 
warning: rasterio/gdal.pxi:216:4: 'GDALRasterBandH' redeclared 
warning: rasterio/gdal.pxi:217:4: 'GDALDriverH' redeclared 
warning: rasterio/gdal.pxi:218:4: 'GDALColorTableH' redeclared 
warning: rasterio/gdal.pxi:219:4: 'GDALRasterAttributeTableH' redeclared 
warning: rasterio/gdal.pxi:220:4: 'GDALAsyncReaderH' redeclared 
warning: rasterio/gdal.pxi:222:4: 'GSpacing' redeclared 
warning: rasterio/gdal.pxi:223:4: 'GIntBig' redeclared 
warning: rasterio/gdal.pxi:226:8: 'GDT_Unknown' redeclared 
warning: rasterio/gdal.pxi:227:8: 'GDT_Byte' redeclared 
warning: rasterio/gdal.pxi:228:8: 'GDT_Int8' redeclared 
warning: rasterio/gdal.pxi:229:8: 'GDT_UInt16' redeclared 
warning: rasterio/gdal.pxi:230:8: 'GDT_Int16' redeclared 
warning: rasterio/gdal.pxi:231:8: 'GDT_UInt32' redeclared 
warning: rasterio/gdal.pxi:232:8: 'GDT_Int32' redeclared 
warning: rasterio/gdal.pxi:233:8: 'GDT_UInt64' redeclared 
warning: rasterio/gdal.pxi:234:8: 'GDT_Int64' redeclared 
warning: rasterio/gdal.pxi:235:8: 'GDT_Float32' redeclared 
warning: rasterio/gdal.pxi:236:8: 'GDT_Float64' redeclared 
warning: rasterio/gdal.pxi:237:8: 'GDT_CInt16' redeclared 
warning: rasterio/gdal.pxi:238:8: 'GDT_CInt32' redeclared 
warning: rasterio/gdal.pxi:239:8: 'GDT_CFloat32' redeclared 
warning: rasterio/gdal.pxi:240:8: 'GDT_CFloat64' redeclared 
warning: rasterio/gdal.pxi:241:8: 'GDT_TypeCount' redeclared 
warning: rasterio/gdal.pxi:244:8: 'GA_ReadOnly' redeclared 
warning: rasterio/gdal.pxi:245:8: 'GA_Update' redeclared 
warning: rasterio/gdal.pxi:248:8: 'GF_Read' redeclared 
warning: rasterio/gdal.pxi:249:8: 'GF_Write' redeclared 
warning: rasterio/gdal.pxi:252:8: 'GRIORA_NearestNeighbour' redeclared 
warning: rasterio/gdal.pxi:253:8: 'GRIORA_Bilinear' redeclared 
warning: rasterio/gdal.pxi:254:8: 'GRIORA_Cubic' redeclared 
warning: rasterio/gdal.pxi:255:8: 'GRIORA_CubicSpline' redeclared 
warning: rasterio/gdal.pxi:256:8: 'GRIORA_Lanczos' redeclared 
warning: rasterio/gdal.pxi:257:8: 'GRIORA_Average' redeclared 
warning: rasterio/gdal.pxi:258:8: 'GRIORA_Mode' redeclared 
warning: rasterio/gdal.pxi:259:8: 'GRIORA_Gauss' redeclared 
warning: rasterio/gdal.pxi:262:8: 'GCI_Undefined' redeclared 
warning: rasterio/gdal.pxi:263:8: 'GCI_GrayIndex' redeclared 
warning: rasterio/gdal.pxi:264:8: 'GCI_PaletteIndex' redeclared 
warning: rasterio/gdal.pxi:265:8: 'GCI_RedBand' redeclared 
warning: rasterio/gdal.pxi:266:8: 'GCI_GreenBand' redeclared 
warning: rasterio/gdal.pxi:267:8: 'GCI_BlueBand' redeclared 
warning: rasterio/gdal.pxi:268:8: 'GCI_AlphaBand' redeclared 
warning: rasterio/gdal.pxi:269:8: 'GCI_HueBand' redeclared 
warning: rasterio/gdal.pxi:270:8: 'GCI_SaturationBand' redeclared 
warning: rasterio/gdal.pxi:271:8: 'GCI_LightnessBand' redeclared 
warning: rasterio/gdal.pxi:272:8: 'GCI_CyanBand' redeclared 
warning: rasterio/gdal.pxi:273:8: 'GCI_YCbCr_YBand' redeclared 
warning: rasterio/gdal.pxi:274:8: 'GCI_YCbCr_CbBand' redeclared 
warning: rasterio/gdal.pxi:275:8: 'GCI_YCbCr_CrBand' redeclared 
warning: rasterio/gdal.pxi:276:8: 'GCI_Max' redeclared 
warning: rasterio/gdal.pxi:435:4: 'OGRLayerH' redeclared 
warning: rasterio/gdal.pxi:436:4: 'OGRDataSourceH' redeclared 
warning: rasterio/gdal.pxi:437:4: 'OGRSFDriverH' redeclared 
warning: rasterio/gdal.pxi:438:4: 'OGRFieldDefnH' redeclared 
warning: rasterio/gdal.pxi:439:4: 'OGRFeatureDefnH' redeclared 
warning: rasterio/gdal.pxi:440:4: 'OGRFeatureH' redeclared 
warning: rasterio/gdal.pxi:441:4: 'OGRGeometryH' redeclared 
warning: rasterio/gdal.pxi:550:8: 'GRA_NearestNeighbour' redeclared 
warning: rasterio/gdal.pxi:551:8: 'GRA_Bilinear' redeclared 
warning: rasterio/gdal.pxi:552:8: 'GRA_Cubic' redeclared 
warning: rasterio/gdal.pxi:553:8: 'GRA_CubicSpline' redeclared 
warning: rasterio/gdal.pxi:554:8: 'GRA_Lanczos' redeclared 
warning: rasterio/gdal.pxi:555:8: 'GRA_Average' redeclared 
warning: rasterio/gdal.pxi:556:8: 'GRA_Mode' redeclared 
warning: rasterio/gdal.pxi:558:4: 'GDALMaskFunc' redeclared 
warning: rasterio/gdal.pxi:563:4: 'GDALTransformerFunc' redeclared 
warning: rasterio/_warp.pxd:8:4: 'GDALResampleAlg' redeclared 
warning: rasterio/_warp.pxd:53:4: 'GDALTransformerFunc' redeclared 
INFO:root:running bdist_wheel
INFO:root:running build
INFO:root:running build_py
INFO:root:creating build
INFO:root:creating build/lib.linux-x86_64-cpython-311
INFO:root:creating build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/warp.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/tools.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/transform.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/drivers.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/plot.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/_show_versions.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/profiles.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/vrt.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/dtypes.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/env.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/rpc.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/fill.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/windows.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/sample.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/mask.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/session.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/__init__.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/enums.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/path.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/control.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/errors.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/io.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/features.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/merge.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/_path.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:copying ./rasterio/coords.py -> build/lib.linux-x86_64-cpython-311/rasterio
INFO:root:creating build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/warp.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/calc.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/transform.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/edit_info.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/env.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/gcps.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/helpers.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/sample.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/main.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/stack.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/mask.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/options.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/overview.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/blocks.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/__init__.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/clip.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/bounds.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/convert.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/merge.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/rasterize.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/rm.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/info.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/shapes.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:copying ./rasterio/rio/insp.py -> build/lib.linux-x86_64-cpython-311/rasterio/rio
INFO:root:running egg_info
INFO:root:creating rasterio.egg-info
INFO:root:writing rasterio.egg-info/PKG-INFO
INFO:root:writing dependency_links to rasterio.egg-info/dependency_links.txt
INFO:root:writing entry points to rasterio.egg-info/entry_points.txt
INFO:root:writing requirements to rasterio.egg-info/requires.txt
INFO:root:writing top-level names to rasterio.egg-info/top_level.txt
INFO:root:writing manifest file 'rasterio.egg-info/SOURCES.txt'
INFO:root:dependency /usr/include/gdal/cpl_conv.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_error.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_progress.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_string.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_vsi.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal_alg.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdalwarper.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_core.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_srs_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_conv.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_error.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_progress.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_string.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_vsi.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal_alg.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdalwarper.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_core.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_srs_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayscalars.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarrayobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarraytypes.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ufuncobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_conv.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_error.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_progress.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_string.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_vsi.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal_alg.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdalwarper.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_core.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_srs_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayscalars.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarrayobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarraytypes.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ufuncobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_conv.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_error.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_progress.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_string.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_vsi.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal_alg.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdalwarper.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_core.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_srs_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_conv.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_error.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_progress.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_string.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_vsi.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal_alg.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdalwarper.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_core.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_geometry.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_spatialref.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_srs_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayscalars.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarrayobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarraytypes.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ufuncobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_conv.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_error.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_progress.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_string.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_vsi.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal_alg.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdalwarper.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_core.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_srs_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayscalars.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarrayobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarraytypes.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ufuncobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_conv.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_error.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_progress.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_string.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_vsi.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal_alg.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdalwarper.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_core.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_srs_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_core.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_srs_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_conv.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_error.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_progress.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_string.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_vsi.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal_alg.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdalwarper.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_core.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_srs_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_conv.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_error.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_progress.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_string.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_vsi.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal_alg.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdalwarper.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_core.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_srs_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayscalars.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarrayobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarraytypes.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/lib/python3/dist-packages/numpy/core/include/numpy/ufuncobject.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_conv.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_error.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_progress.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_string.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_vsi.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal_alg.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdalwarper.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_core.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_srs_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_conv.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_error.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_progress.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_string.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_vsi.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/cpl_vsi_virtual.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdal_alg.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/gdalwarper.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_core.h won't be automatically included in the manifest: the path must be relative
INFO:root:dependency /usr/include/gdal/ogr_srs_api.h won't be automatically included in the manifest: the path must be relative
INFO:root:reading manifest file 'rasterio.egg-info/SOURCES.txt'
INFO:root:reading manifest template 'MANIFEST.in'
WARNING:root:warning: no previously-included files found matching '*.txt'
WARNING:root:warning: no previously-included files matching '*.tif' found under directory 'tests/data'
WARNING:root:warning: no files found matching '*.txt' under directory 'tests/data'
INFO:root:adding license file 'LICENSE.txt'
INFO:root:adding license file 'AUTHORS.txt'
INFO:root:writing manifest file 'rasterio.egg-info/SOURCES.txt'
INFO:root:running build_ext
INFO:root:building 'rasterio._base' extension
INFO:root:creating build/temp.linux-x86_64-cpython-311
INFO:root:creating build/temp.linux-x86_64-cpython-311/rasterio
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/_base.c -o build/temp.linux-x86_64-cpython-311/rasterio/_base.o -Wno-unused-parameter -Wno-unused-function
INFO:root:x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/_base.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/_base.cpython-311-x86_64-linux-gnu.so
INFO:root:building 'rasterio._io' extension
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/_io.c -o build/temp.linux-x86_64-cpython-311/rasterio/_io.o -Wno-unused-parameter -Wno-unused-function
In file included from /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarraytypes.h:1940,
                 from /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarrayobject.h:12,
                 from /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayobject.h:5,
                 from rasterio/_io.c:808:
/usr/lib/python3/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]
   17 | #warning "Using deprecated NumPy API, disable it with " \
      |  ^~~~~~~
INFO:root:x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/_io.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/_io.cpython-311-x86_64-linux-gnu.so
INFO:root:building 'rasterio._features' extension
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/_features.c -o build/temp.linux-x86_64-cpython-311/rasterio/_features.o -Wno-unused-parameter -Wno-unused-function
In file included from /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarraytypes.h:1940,
                 from /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarrayobject.h:12,
                 from /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayobject.h:5,
                 from rasterio/_features.c:808:
/usr/lib/python3/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]
   17 | #warning "Using deprecated NumPy API, disable it with " \
      |  ^~~~~~~
INFO:root:x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/_features.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/_features.cpython-311-x86_64-linux-gnu.so
INFO:root:building 'rasterio._env' extension
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/_env.c -o build/temp.linux-x86_64-cpython-311/rasterio/_env.o -Wno-unused-parameter -Wno-unused-function
INFO:root:x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/_env.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/_env.cpython-311-x86_64-linux-gnu.so
INFO:root:building 'rasterio._warp' extension
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/_warp.cpp -o build/temp.linux-x86_64-cpython-311/rasterio/_warp.o -Wno-unused-parameter -Wno-unused-function -std=c++11
In file included from /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarraytypes.h:1940,
                 from /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarrayobject.h:12,
                 from /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayobject.h:5,
                 from rasterio/_warp.cpp:826:
/usr/lib/python3/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]
   17 | #warning "Using deprecated NumPy API, disable it with " \
      |  ^~~~~~~
INFO:root:x86_64-linux-gnu-g++ -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/_warp.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/_warp.cpython-311-x86_64-linux-gnu.so
INFO:root:building 'rasterio._fill' extension
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/_fill.cpp -o build/temp.linux-x86_64-cpython-311/rasterio/_fill.o -Wno-unused-parameter -Wno-unused-function -std=c++11
In file included from /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarraytypes.h:1940,
                 from /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarrayobject.h:12,
                 from /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayobject.h:5,
                 from rasterio/_fill.cpp:824:
/usr/lib/python3/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]
   17 | #warning "Using deprecated NumPy API, disable it with " \
      |  ^~~~~~~
INFO:root:x86_64-linux-gnu-g++ -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/_fill.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/_fill.cpython-311-x86_64-linux-gnu.so
INFO:root:building 'rasterio._err' extension
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/_err.c -o build/temp.linux-x86_64-cpython-311/rasterio/_err.o -Wno-unused-parameter -Wno-unused-function
INFO:root:x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/_err.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/_err.cpython-311-x86_64-linux-gnu.so
INFO:root:building 'rasterio._example' extension
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/_example.c -o build/temp.linux-x86_64-cpython-311/rasterio/_example.o -Wno-unused-parameter -Wno-unused-function
INFO:root:x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/_example.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/_example.cpython-311-x86_64-linux-gnu.so
INFO:root:building 'rasterio._version' extension
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/_version.c -o build/temp.linux-x86_64-cpython-311/rasterio/_version.o -Wno-unused-parameter -Wno-unused-function
INFO:root:x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/_version.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/_version.cpython-311-x86_64-linux-gnu.so
INFO:root:building 'rasterio.crs' extension
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/crs.c -o build/temp.linux-x86_64-cpython-311/rasterio/crs.o -Wno-unused-parameter -Wno-unused-function
INFO:root:x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/crs.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/crs.cpython-311-x86_64-linux-gnu.so
INFO:root:building 'rasterio.shutil' extension
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/shutil.c -o build/temp.linux-x86_64-cpython-311/rasterio/shutil.o -Wno-unused-parameter -Wno-unused-function
In file included from /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarraytypes.h:1940,
                 from /usr/lib/python3/dist-packages/numpy/core/include/numpy/ndarrayobject.h:12,
                 from /usr/lib/python3/dist-packages/numpy/core/include/numpy/arrayobject.h:5,
                 from rasterio/shutil.c:808:
/usr/lib/python3/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]
   17 | #warning "Using deprecated NumPy API, disable it with " \
      |  ^~~~~~~
INFO:root:x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/shutil.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/shutil.cpython-311-x86_64-linux-gnu.so
INFO:root:building 'rasterio._transform' extension
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/_transform.c -o build/temp.linux-x86_64-cpython-311/rasterio/_transform.o -Wno-unused-parameter -Wno-unused-function
INFO:root:x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/_transform.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/_transform.cpython-311-x86_64-linux-gnu.so
INFO:root:building 'rasterio._filepath' extension
INFO:root:x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/lib/python3/dist-packages/numpy/core/include -I/usr/include/gdal -I/usr/include/python3.11 -c rasterio/_filepath.cpp -o build/temp.linux-x86_64-cpython-311/rasterio/_filepath.o -Wno-unused-parameter -Wno-unused-function -std=c++11
INFO:root:x86_64-linux-gnu-g++ -shared -Wl,-O1 -Wl,-Bsymbolic-functions -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/rasterio-1.3.9=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-cpython-311/rasterio/_filepath.o -L/usr/lib/x86_64-linux-gnu -L/usr/lib/x86_64-linux-gnu -lgdal -o build/lib.linux-x86_64-cpython-311/rasterio/_filepath.cpython-311-x86_64-linux-gnu.so
INFO:wheel:installing to build/bdist.linux-x86_64/wheel
INFO:root:running install
INFO:root:running install_lib
INFO:root:creating build/bdist.linux-x86_64
INFO:root:creating build/bdist.linux-x86_64/wheel
INFO:root:creating build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/warp.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/tools.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_base.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/transform.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/drivers.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/plot.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/shutil.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_show_versions.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/profiles.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/vrt.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_err.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/dtypes.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_warp.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/env.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rpc.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/fill.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/windows.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_io.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_fill.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/sample.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/mask.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_version.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_filepath.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/session.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/__init__.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/enums.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/path.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/crs.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/control.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_transform.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_env.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/errors.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_features.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/io.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:creating build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/warp.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/calc.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/transform.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/edit_info.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/env.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/gcps.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/helpers.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/sample.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/main.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/stack.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/mask.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/options.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/overview.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/blocks.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/__init__.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/clip.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/bounds.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/convert.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/merge.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/rasterize.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/rm.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/info.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/shapes.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/rio/insp.py -> build/bdist.linux-x86_64/wheel/rasterio/rio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_example.cpython-311-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/features.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/merge.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/_path.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:copying build/lib.linux-x86_64-cpython-311/rasterio/coords.py -> build/bdist.linux-x86_64/wheel/rasterio
INFO:root:running install_egg_info
INFO:root:Copying rasterio.egg-info to build/bdist.linux-x86_64/wheel/rasterio-1.3.9.egg-info
INFO:root:running install_scripts
INFO:wheel:creating build/bdist.linux-x86_64/wheel/rasterio-1.3.9.dist-info/WHEEL
INFO:wheel:creating '/build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/.tmp-cm7n_qsb/rasterio-1.3.9-cp311-cp311-linux_x86_64.whl' and adding 'build/bdist.linux-x86_64/wheel' to it
INFO:wheel:adding 'rasterio/__init__.py'
INFO:wheel:adding 'rasterio/_base.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/_env.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/_err.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/_example.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/_features.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/_filepath.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/_fill.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/_io.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/_path.py'
INFO:wheel:adding 'rasterio/_show_versions.py'
INFO:wheel:adding 'rasterio/_transform.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/_version.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/_warp.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/control.py'
INFO:wheel:adding 'rasterio/coords.py'
INFO:wheel:adding 'rasterio/crs.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/drivers.py'
INFO:wheel:adding 'rasterio/dtypes.py'
INFO:wheel:adding 'rasterio/enums.py'
INFO:wheel:adding 'rasterio/env.py'
INFO:wheel:adding 'rasterio/errors.py'
INFO:wheel:adding 'rasterio/features.py'
INFO:wheel:adding 'rasterio/fill.py'
INFO:wheel:adding 'rasterio/io.py'
INFO:wheel:adding 'rasterio/mask.py'
INFO:wheel:adding 'rasterio/merge.py'
INFO:wheel:adding 'rasterio/path.py'
INFO:wheel:adding 'rasterio/plot.py'
INFO:wheel:adding 'rasterio/profiles.py'
INFO:wheel:adding 'rasterio/rpc.py'
INFO:wheel:adding 'rasterio/sample.py'
INFO:wheel:adding 'rasterio/session.py'
INFO:wheel:adding 'rasterio/shutil.cpython-311-x86_64-linux-gnu.so'
INFO:wheel:adding 'rasterio/tools.py'
INFO:wheel:adding 'rasterio/transform.py'
INFO:wheel:adding 'rasterio/vrt.py'
INFO:wheel:adding 'rasterio/warp.py'
INFO:wheel:adding 'rasterio/windows.py'
INFO:wheel:adding 'rasterio/rio/__init__.py'
INFO:wheel:adding 'rasterio/rio/blocks.py'
INFO:wheel:adding 'rasterio/rio/bounds.py'
INFO:wheel:adding 'rasterio/rio/calc.py'
INFO:wheel:adding 'rasterio/rio/clip.py'
INFO:wheel:adding 'rasterio/rio/convert.py'
INFO:wheel:adding 'rasterio/rio/edit_info.py'
INFO:wheel:adding 'rasterio/rio/env.py'
INFO:wheel:adding 'rasterio/rio/gcps.py'
INFO:wheel:adding 'rasterio/rio/helpers.py'
INFO:wheel:adding 'rasterio/rio/info.py'
INFO:wheel:adding 'rasterio/rio/insp.py'
INFO:wheel:adding 'rasterio/rio/main.py'
INFO:wheel:adding 'rasterio/rio/mask.py'
INFO:wheel:adding 'rasterio/rio/merge.py'
INFO:wheel:adding 'rasterio/rio/options.py'
INFO:wheel:adding 'rasterio/rio/overview.py'
INFO:wheel:adding 'rasterio/rio/rasterize.py'
INFO:wheel:adding 'rasterio/rio/rm.py'
INFO:wheel:adding 'rasterio/rio/sample.py'
INFO:wheel:adding 'rasterio/rio/shapes.py'
INFO:wheel:adding 'rasterio/rio/stack.py'
INFO:wheel:adding 'rasterio/rio/transform.py'
INFO:wheel:adding 'rasterio/rio/warp.py'
INFO:wheel:adding 'rasterio-1.3.9.dist-info/AUTHORS.txt'
INFO:wheel:adding 'rasterio-1.3.9.dist-info/LICENSE.txt'
INFO:wheel:adding 'rasterio-1.3.9.dist-info/METADATA'
INFO:wheel:adding 'rasterio-1.3.9.dist-info/WHEEL'
INFO:wheel:adding 'rasterio-1.3.9.dist-info/entry_points.txt'
INFO:wheel:adding 'rasterio-1.3.9.dist-info/top_level.txt'
INFO:wheel:adding 'rasterio-1.3.9.dist-info/RECORD'
INFO:wheel:removing build/bdist.linux-x86_64/wheel
Successfully built rasterio-1.3.9-cp311-cp311-linux_x86_64.whl
I: pybuild plugin_pyproject:122: Unpacking wheel built for python3.11 with "installer" module
   debian/rules override_dh_auto_test
make[1]: Entering directory '/build/rasterio-1.3.9'
dh_auto_test
I: pybuild pybuild:314: cp -r /build/rasterio-1.3.9/tests /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build
I: pybuild base:310: cd /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build; python3.11 -m pytest --ignore tests/test_env.py --ignore tests/test_io.py --ignore tests/test_merge.py --ignore tests/test_rio_blocks.py --ignore tests/test_rio_bounds.py --ignore tests/test_rio_calc.py --ignore tests/test_rio_clip.py --ignore tests/test_rio_convert.py --ignore tests/test_rio_edit_info.py --ignore tests/test_rio_gcp.py --ignore tests/test_rio_helpers.py --ignore tests/test_rio_info.py --ignore tests/test_rio_insp.py --ignore tests/test_rio_main.py --ignore tests/test_rio_mask.py --ignore tests/test_rio_merge.py --ignore tests/test_rio_options.py --ignore tests/test_rio_overview.py --ignore tests/test_rio_rasterize.py --ignore tests/test_rio_rm.py --ignore tests/test_rio_sample.py --ignore tests/test_rio_shapes.py --ignore tests/test_rio_stack.py --ignore tests/test_rio_warp.py --ignore tests/test_session.py --ignore tests/test_warp.py --ignore tests/test_warpedvrt.py
Test data present.
============================= test session starts ==============================
platform linux -- Python 3.11.6, pytest-7.4.3, pluggy-1.3.0
rootdir: /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build
configfile: pyproject.toml
plugins: hypothesis-6.88.1
collected 1086 items / 1 skipped

tests/test__env.py .................                                     [  1%]
tests/test__version.py .....                                             [  2%]
tests/test_band.py .                                                     [  2%]
tests/test_band_masks.py ...........                                     [  3%]
tests/test_blocks.py .......................                             [  5%]
tests/test_boundless_read.py .XX...X..XX.                                [  6%]
tests/test_checksum.py ......                                            [  6%]
tests/test_cli_main.py ..                                                [  7%]
tests/test_colorinterp.py .....xx...............                         [  8%]
tests/test_colormap.py ..                                                [  9%]
tests/test_complex_dtypes.py .....                                       [  9%]
tests/test_coords.py ......                                              [ 10%]
tests/test_creation_options.py .                                         [ 10%]
tests/test_crs.py ...................................................... [ 15%]
.............................................................            [ 20%]
tests/test_data_paths.py ..                                              [ 20%]
tests/test_dataset.py .................................                  [ 24%]
tests/test_dataset_mask.py ............                                  [ 25%]
tests/test_dataset_rw.py ...                                             [ 25%]
tests/test_deprecated.py .                                               [ 25%]
tests/test_descriptions.py ....                                          [ 25%]
tests/test_driver_management.py ....                                     [ 26%]
tests/test_driver_policy.py ..                                           [ 26%]
tests/test_dtypes.py ..........................                          [ 28%]
tests/test_enums.py ...........                                          [ 29%]
tests/test_err.py .....x                                                 [ 30%]
tests/test_features.py ................................................. [ 34%]
..........................s..X.......................................... [ 41%]
..                                                                       [ 41%]
tests/test_filepath.py .............xx...                                [ 43%]
tests/test_fillnodata.py ....                                            [ 43%]
tests/test_gcps.py .........                                             [ 44%]
tests/test_gdal_raster_io.py ...................................         [ 47%]
tests/test_image_structure.py ...............                            [ 49%]
tests/test_indexing.py .....................                             [ 51%]
tests/test_int8.py .....                                                 [ 51%]
tests/test_io_mixins.py .....                                            [ 52%]
tests/test_mask.py .......................                               [ 54%]
tests/test_mask_creation.py .....                                        [ 54%]
tests/test_memoryfile.py ............................                    [ 57%]
tests/test_meta.py ..                                                    [ 57%]
tests/test_no_georef.py ..                                               [ 57%]
tests/test_nodata.py ......                                              [ 58%]
tests/test_open.py ......                                                [ 58%]
tests/test_open_options.py ...                                           [ 58%]
tests/test_open_overview_level.py .                                      [ 59%]
tests/test_open_sharing.py ..                                            [ 59%]
tests/test_options.py .                                                  [ 59%]
tests/test_overviews.py ..............                                   [ 60%]
tests/test_pad.py .                                                      [ 60%]
tests/test_path.py ...................................................   [ 65%]
tests/test_png.py .                                                      [ 65%]
tests/test_process_pool_executor.py ..                                   [ 65%]
tests/test_profile.py ...................                                [ 67%]
tests/test_read.py ........................                              [ 69%]
tests/test_read_boundless.py .............x                              [ 70%]
tests/test_read_dtype.py ....                                            [ 71%]
tests/test_read_resample.py .......F                                     [ 72%]
tests/test_reshape_image.py ...                                          [ 72%]
tests/test_revolvingdoor.py .                                            [ 72%]
tests/test_rio_env.py ....                                               [ 72%]
tests/test_rio_transform.py .                                            [ 72%]
tests/test_rpcs.py ......                                                [ 73%]
tests/test_sampling.py ...........                                       [ 74%]
tests/test_scale_offset.py ........                                      [ 75%]
tests/test_show_versions.py ....                                         [ 75%]
tests/test_shutil.py .................                                   [ 77%]
tests/test_statistics.py ..                                              [ 77%]
tests/test_subdatasets.py s.                                             [ 77%]
tests/test_tag_item.py ...                                               [ 77%]
tests/test_tag_ns.py .                                                   [ 77%]
tests/test_tags.py .....                                                 [ 78%]
tests/test_thread_pool_executor.py ..                                    [ 78%]
tests/test_threading.py ....                                             [ 78%]
tests/test_tools.py ..                                                   [ 79%]
tests/test_transform.py ................................................ [ 83%]
.....................                                                    [ 85%]
tests/test_units.py ....                                                 [ 85%]
tests/test_update.py ........                                            [ 86%]
tests/test_vrt.py ..                                                     [ 86%]
tests/test_warnings.py .....                                             [ 87%]
tests/test_warp_transform.py ........................                    [ 89%]
tests/test_windows.py .................................................. [ 93%]
................                                                         [ 95%]
tests/test_windows_mixins.py ......                                      [ 95%]
tests/test_write.py ........................................s.

=================================== FAILURES ===================================
_____________________________ test_resampling_rms ______________________________

    @requires_gdal33
    def test_resampling_rms():
        """Test Resampling.rms method"""
        with rasterio.open('tests/data/float.tif') as s:
            out_shape = (2, 2)
            rms = s.read(1, out_shape=out_shape, resampling=Resampling.rms)
            expected = np.array([
                [1.35266399, 0.95388681],
                [0.29308701, 1.54074657]], dtype=np.float32)
>           assert (rms == expected).all()  # all True.
E           assert False
E            +  where False = <built-in method all of numpy.ndarray object at 0x7fc748dabe70>()
E            +    where <built-in method all of numpy.ndarray object at 0x7fc748dabe70> = array([[1.352... 1.54074657]]) == array([[1.352...dtype=float32)
E                 Use -v to get more diff.all

tests/test_read_resample.py:106: AssertionError
------------------------------ Captured log call -------------------------------
DEBUG    rasterio._env:env.py:326 GDAL data files are available at built-in paths.
DEBUG    rasterio._env:env.py:326 PROJ data files are available at built-in paths.
DEBUG    rasterio._env:env.py:326 Started GDALEnv: self=<rasterio._env.GDALEnv object at 0x7fc748e43fd0>.
DEBUG    rasterio._env:env.py:362 Stopped GDALEnv <rasterio._env.GDALEnv object at 0x7fc748e43fd0>.
DEBUG    rasterio._env:env.py:326 GDAL data files are available at built-in paths.
DEBUG    rasterio._env:env.py:326 PROJ data files are available at built-in paths.
DEBUG    rasterio._env:env.py:326 Started GDALEnv: self=<rasterio._env.GDALEnv object at 0x7fc748e43730>.
DEBUG    rasterio._env:env.py:362 Stopped GDALEnv <rasterio._env.GDALEnv object at 0x7fc748e43730>.
=============================== warnings summary ===============================
tests/test_cli_main.py:1
  /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/tests/test_cli_main.py:1: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
    from pkg_resources import iter_entry_points

rasterio/__init__.py:304: 1 warning
tests/test_blocks.py: 5 warnings
tests/test_boundless_read.py: 1 warning
tests/test_crs.py: 1 warning
tests/test_dataset.py: 6 warnings
tests/test_dataset_rw.py: 1 warning
tests/test_dtypes.py: 1 warning
tests/test_gdal_raster_io.py: 14 warnings
tests/test_mask_creation.py: 1 warning
tests/test_no_georef.py: 1 warning
tests/test_open_options.py: 1 warning
tests/test_overviews.py: 1 warning
tests/test_read.py: 1 warning
tests/test_rpcs.py: 1 warning
tests/test_subdatasets.py: 1 warning
tests/test_tags.py: 1 warning
tests/test_write.py: 6 warnings
  /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/__init__.py:304: NotGeoreferencedWarning: Dataset has no geotransform, gcps, or rpcs. The identity matrix will be returned.
    dataset = DatasetReader(path, driver=driver, sharing=sharing, **kwargs)

tests/test_blocks.py: 5 warnings
tests/test_complex_dtypes.py: 3 warnings
tests/test_creation_options.py: 1 warning
tests/test_dataset.py: 6 warnings
tests/test_dataset_rw.py: 2 warnings
tests/test_descriptions.py: 4 warnings
tests/test_dtypes.py: 1 warning
tests/test_gdal_raster_io.py: 35 warnings
tests/test_no_georef.py: 2 warnings
tests/test_png.py: 1 warning
tests/test_profile.py: 1 warning
tests/test_rpcs.py: 1 warning
tests/test_scale_offset.py: 8 warnings
tests/test_tags.py: 3 warnings
tests/test_units.py: 4 warnings
tests/test_write.py: 23 warnings
  /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/__init__.py:314: NotGeoreferencedWarning: Dataset has no geotransform, gcps, or rpcs. The identity matrix will be returned.
    dataset = writer(

tests/test_boundless_read.py::test_issue2382
tests/test_memoryfile.py::test_write_rpcs_to_memfile
  /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/io.py:141: NotGeoreferencedWarning: The given matrix is equal to Affine.identity or its flipped counterpart. GDAL may ignore this matrix and save no geotransform without raising an error. This behavior is somewhat driver-specific.
    return writer(

tests/test_dataset.py: 4 warnings
tests/test_features.py: 9 warnings
tests/test_mask.py: 21 warnings
tests/test_no_georef.py: 1 warning
tests/test_write.py: 2 warnings
  /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/__init__.py:314: NotGeoreferencedWarning: The given matrix is equal to Affine.identity or its flipped counterpart. GDAL may ignore this matrix and save no geotransform without raising an error. This behavior is somewhat driver-specific.
    dataset = writer(

tests/test_dtypes.py::test_cant_cast_dtype_nan[uint8]
tests/test_dtypes.py::test_cant_cast_dtype_nan[uint16]
tests/test_dtypes.py::test_cant_cast_dtype_nan[uint32]
tests/test_dtypes.py::test_cant_cast_dtype_nan[int32]
  /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/dtypes.py:224: RuntimeWarning: invalid value encountered in cast
    return np.allclose(values, values.astype(dtype), equal_nan=True)

tests/test_nodata.py::test_set_mem_inf_nodata
tests/test_nodata.py::test_set_mem_nan_nodata
tests/test_warnings.py::test_notgeoref_warning
tests/test_warnings.py::test_no_notgeoref_warning[None-gcps1-None]
tests/test_warnings.py::test_no_notgeoref_warning[None-None-rpcs2]
  /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/io.py:141: NotGeoreferencedWarning: Dataset has no geotransform, gcps, or rpcs. The identity matrix will be returned.
    return writer(

tests/test_show_versions.py::test_get_deps_info
tests/test_show_versions.py::test_show_versions_with_gdal
  /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build/rasterio/_show_versions.py:76: DeprecationWarning: Accessing attrs.__version__ is deprecated and will be removed in a future release. Use importlib.metadata directly to query for attrs's packaging metadata.
    return module.__version__

tests/test_warnings.py::test_no_notgeoref_warning[transform0-None-None]
tests/test_warnings.py::test_no_notgeoref_warning[None-gcps1-None]
tests/test_warnings.py::test_no_notgeoref_warning[None-None-rpcs2]
  /usr/lib/python3/dist-packages/_pytest/python.py:194: PytestRemovedIn8Warning: Passing None has been deprecated.
  See https://docs.pytest.org/en/latest/how-to/capture-warnings.html#additional-use-cases-of-warnings-in-tests for alternatives in common use cases.
    result = testfunction(**testargs)

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/test_read_resample.py::test_resampling_rms - assert False
= 1 failed, 1070 passed, 4 skipped, 6 xfailed, 6 xpassed, 198 warnings in 15.67s =
E: pybuild pybuild:395: test: plugin pyproject failed with: exit code=1: cd /build/rasterio-1.3.9/.pybuild/cpython3_3.11_rasterio/build; python3.11 -m pytest --ignore tests/test_env.py --ignore tests/test_io.py --ignore tests/test_merge.py --ignore tests/test_rio_blocks.py --ignore tests/test_rio_bounds.py --ignore tests/test_rio_calc.py --ignore tests/test_rio_clip.py --ignore tests/test_rio_convert.py --ignore tests/test_rio_edit_info.py --ignore tests/test_rio_gcp.py --ignore tests/test_rio_helpers.py --ignore tests/test_rio_info.py --ignore tests/test_rio_insp.py --ignore tests/test_rio_main.py --ignore tests/test_rio_mask.py --ignore tests/test_rio_merge.py --ignore tests/test_rio_options.py --ignore tests/test_rio_overview.py --ignore tests/test_rio_rasterize.py --ignore tests/test_rio_rm.py --ignore tests/test_rio_sample.py --ignore tests/test_rio_shapes.py --ignore tests/test_rio_stack.py --ignore tests/test_rio_warp.py --ignore tests/test_session.py --ignore tests/test_warp.py --ignore tests/test_warpedvrt.py
dh_auto_test: error: pybuild --test -i python{version} -p 3.11 returned exit code 13
make[1]: *** [debian/rules:48: override_dh_auto_test] Error 25
make[1]: Leaving directory '/build/rasterio-1.3.9'
make: *** [debian/rules:41: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
I: copying local configuration
E: Failed autobuilding of package
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: Cleaning COW directory
I: forking: rm -rf /var/cache/pbuilder/build/cow.3124513


More information about the Pkg-grass-devel mailing list