Bug#983223: python-pyproj: FTBFS with PROJ 8.0.0

Bas Couwenberg sebastic at xs4all.nl
Sun Feb 21 09:57:01 GMT 2021


Source: python-pyproj
Version: 3.0.0-2
Severity: important
Tags: upstream ftbfs
User: debian-gis at lists.debian.org
Usertags: proj-8.0

Dear Maintainer,

Your package FTBFS with PROJ 8.0.0:

 =================================== FAILURES ===================================
 ___________________________ test_proj_debug_logging ____________________________
 
 capsys = <_pytest.capture.CaptureFixture object at 0x7faa62ca5a00>
 
     def test_proj_debug_logging(capsys):
         with proj_logging_env():
             with pytest.warns(FutureWarning):
                 transformer = Transformer.from_proj("+init=epsg:4326", "+init=epsg:27700")
             transformer.transform(100000, 100000)
             captured = capsys.readouterr()
             if os.environ.get("PROJ_DEBUG") == "3":
                 assert "PROJ_TRACE" in captured.err
                 assert "PROJ_DEBUG" in captured.err
             elif os.environ.get("PROJ_DEBUG") == "2":
                 assert "PROJ_TRACE" not in captured.err
                 assert "PROJ_DEBUG" in captured.err
             else:
 >               assert captured.err == ""
 E               AssertionError: assert 'MainThread:D...id latitude\n' == ''
 E                 + MainThread:DEBUG:PROJ_ERROR: tmerc: Invalid latitude
 E                 + MainThread:DEBUG:PROJ_ERROR: push: Invalid latitude
 
 test/test_datadir.py:240: AssertionError
 ------------------------------ Captured log call -------------------------------
 DEBUG    pyproj:transformer.py:488 PROJ_ERROR: tmerc: Invalid latitude
 DEBUG    pyproj:transformer.py:488 PROJ_ERROR: push: Invalid latitude
 _________________________ test_illegal_transformation __________________________
 
     def test_illegal_transformation():
         # issue 202
         with pytest.warns(FutureWarning):
             p1 = pyproj.Proj(init="epsg:4326")
             p2 = pyproj.Proj(init="epsg:3857")
         with pytest.warns(DeprecationWarning):
             xx, yy = pyproj.transform(
                 p1, p2, (-180, -180, 180, 180, -180), (-90, 90, 90, -90, -90)
             )
 >       assert np.all(np.isinf(xx))
 E       AssertionError: assert False
 E        +  where False = <function all at 0x7faa664ece50>(array([False, False, False, False, False]))
 E        +    where <function all at 0x7faa664ece50> = np.all
 E        +    and   array([False, False, False, False, False]) = <ufunc 'isinf'>((-20037508.342789244, -20037508.342789244, 20037508.342789244, 20037508.342789244, -20037508.342789244))
 E        +      where <ufunc 'isinf'> = np.isinf
 
 test/test_transformer.py:56: AssertionError
 _ test_repr[7789-8401-<Transformation Transformer: helmert>\nDescription: ITRF2014 to ETRF2014 (2)\nArea of Use:\n- name: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cypr
 us; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro; Netherlands; North Macedonia; 
 Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino; Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle of Man; Vatican City State.\n- bounds: (-16.1
 , 32.88, 40.18, 84.17)] _
 
 from_crs = 7789, to_crs = 8401
 expected_repr = '<Transformation Transformer: helmert>\nDescription: ITRF2014 to ETRF2014 (2)\nArea of Use:\n- name: Europe - onshore ...ed Kingdom (UK) including Channel Islands and Isle of Man; Vatican City State.\n- bounds: (-16.1, 3
 2.88, 40.18, 84.17)'
 
     @pytest.mark.parametrize(
         "from_crs, to_crs, expected_repr",
         [
             (
                 7789,
                 8401,
                 (
                     "<Transformation Transformer: helmert>\n"
                     "Description: ITRF2014 to ETRF2014 (2)\n"
                     "Area of Use:\n"
                     "- name: Europe - onshore and offshore: Albania; Andorra; Austria; "
                     "Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; "
                     "Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; "
                     "Greece; Hungary; Ireland; Italy; Kosovo; Latvia; Liechtenstein; "
                     "Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro; "
                     "Netherlands; North Macedonia; "
                     "Norway including Svalbard and Jan Mayen; "
                     "Poland; Portugal; Romania; San Marino; Serbia; Slovakia; Slovenia; "
                     "Spain; Sweden; Switzerland; "
                     "United Kingdom (UK) including Channel Islands and Isle of Man; "
                     "Vatican City State.\n"
                     "- bounds: (-16.1, 32.88, 40.18, 84.17)"
                 ),
             ),
             (
                 4326,
                 3857,
                 (
                     "<Conversion Transformer: pipeline>\n"
                     "Description: Popular Visualisation Pseudo-Mercator\n"
                     "Area of Use:\n"
                     "- name: World.\n"
                     "- bounds: (-180.0, -90.0, 180.0, 90.0)"
                 ),
             ),
         ],
     )
     def test_repr(from_crs, to_crs, expected_repr):
 >       assert repr(Transformer.from_crs(from_crs, to_crs)) == expected_repr
 E       AssertionError: assert '<Transformat...722623821813)' == '<Transformat...40.18, 84.17)'
 E           <Transformation Transformer: helmert>
 E           Description: ITRF2014 to ETRF2014 (2)
 E           Area of Use:
 E           - name: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro; Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino; Serbia; Slovakia; Slovenia; Spain; Sweden; S...
 E         
 E         ...Full output truncated (3 lines hidden), use '-vv' to show
 
 test/test_transformer.py:498: AssertionError
 =============================== warnings summary ===============================
 .pybuild/cpython3_3.9_pyproj/build/test/test_datadir.py::test_get_data_dir__from_user[str]
 .pybuild/cpython3_3.9_pyproj/build/test/test_datadir.py::test_get_data_dir__from_user[Path]
 .pybuild/cpython3_3.9_pyproj/build/test/test_datadir.py::test_append_data_dir__internal[str]
 .pybuild/cpython3_3.9_pyproj/build/test/test_datadir.py::test_append_data_dir__internal[Path]
   /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/datadir.py:37: UserWarning: pyproj unable to set database path.
     _global_context_set_data_dir()
 
 -- Docs: https://docs.pytest.org/en/stable/warnings.html
 =========================== short test summary info ============================
 FAILED test/test_datadir.py::test_proj_debug_logging - AssertionError: assert...
 FAILED test/test_transformer.py::test_illegal_transformation - AssertionError...
 FAILED test/test_transformer.py::test_repr[7789-8401-<Transformation Transformer: helmert>\nDescription: ITRF2014 to ETRF2014 (2)\nArea of Use:\n- name: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro; Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino; Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle of Man; Vatican City State.\n- bounds: (-16.1, 32.88, 40.18, 84.17)]
 ===== 3 failed, 273 passed, 58 deselected, 4 warnings in 122.49s (0:02:02) =====

The full buildlog is attached.

Kind Regards,

Bas 
-------------- next part --------------
dpkg-checkbuilddeps: error: Unmet build dependencies: libproj-dev (>= 7.1.0) proj-bin (>= 7.1.0) python3-pandas python3-pytest-cov python3-xarray
W: Unmet build-dependency in source
dh clean \
	--with python3 \
	--buildsystem=pybuild
   dh_auto_clean -O--buildsystem=pybuild
I: pybuild base:217: python3.7 setup.py clean 
running clean
removing '/home/bas/tmp/debian/python-pyproj-3.0.0/.pybuild/cpython3_3.7_pyproj/build' (and everything under it)
'build/bdist.linux-amd64' does not exist -- can't clean it
'build/scripts-3.7' does not exist -- can't clean it
   dh_autoreconf_clean -O--buildsystem=pybuild
   dh_clean -O--buildsystem=pybuild
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building python-pyproj using existing ./python-pyproj_3.0.0.orig.tar.gz
dpkg-source: info: building python-pyproj in python-pyproj_3.0.0-3.debian.tar.xz
dpkg-source: info: building python-pyproj in python-pyproj_3.0.0-3.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.16657
I: forking: cp -al /var/cache/pbuilder/base-sid+rebuild.cow /var/cache/pbuilder/build/cow.16657
I: removed stale ilistfile /var/cache/pbuilder/build/cow.16657/.ilist
I: forking: chroot /var/cache/pbuilder/build/cow.16657 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.16657 --buildresult /var/cache/pbuilder/result/ --mirror http://ftp.nl.debian.org/debian/ --distribution sid --no-targz --internal-chrootexec 'chroot /var/cache/pbuilder/build/cow.16657 cow-shell' /home/bas/tmp/debian/python-pyproj_3.0.0-3.dsc
I: Running in no-targz mode
I: pbuilder: network access will be disabled during build
I: Current time: Sun Feb 21 10:47:14 CET 2021
I: pbuilder-time-stamp: 1613900834
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/python-pyproj_3.0.0-3.dsc]
I: copying [/home/bas/tmp/debian/python-pyproj_3.0.0.orig.tar.gz]
I: copying [/home/bas/tmp/debian/python-pyproj_3.0.0-3.debian.tar.xz]
I: Extracting source
dpkg-source: warning: extracting unsigned source package (python-pyproj_3.0.0-3.dsc)
dpkg-source: info: extracting python-pyproj in python-pyproj-3.0.0
dpkg-source: info: unpacking python-pyproj_3.0.0.orig.tar.gz
dpkg-source: info: unpacking python-pyproj_3.0.0-3.debian.tar.xz
I: using fakeroot in 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 (>= 10~), dh-python, cython3, libproj-dev (>= 7.1.0), proj-bin (>= 7.1.0), python3-all-dev, python3-certifi, python3-setuptools, python3-mock, python3-numpy, python3-pandas, python3-pytest, python3-pytest-cov, python3-shapely, python3-xarray
dpkg-deb: building package 'pbuilder-satisfydepends-dummy' in '/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'.
Selecting previously unselected package pbuilder-satisfydepends-dummy.
(Reading database ... 14463 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 (>= 10~); however:
  Package debhelper is not installed.
 pbuilder-satisfydepends-dummy depends on dh-python; however:
  Package dh-python is not installed.
 pbuilder-satisfydepends-dummy depends on cython3; however:
  Package cython3 is not installed.
 pbuilder-satisfydepends-dummy depends on libproj-dev (>= 7.1.0); however:
  Package libproj-dev is not installed.
 pbuilder-satisfydepends-dummy depends on proj-bin (>= 7.1.0); however:
  Package proj-bin 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-certifi; however:
  Package python3-certifi is not installed.
 pbuilder-satisfydepends-dummy depends on python3-setuptools; however:
  Package python3-setuptools is not installed.
 pbuilder-satisfydepends-dummy depends on python3-mock; however:
  Package python3-mock is not installed.
 pbuilder-satisfydepends-dummy depends on python3-numpy; however:
  Package python3-numpy is not installed.
 pbuilder-satisfydepends-dummy depends on python3-pandas; however:
  Package python3-pandas is not installed.
 pbuilder-satisfydepends-dummy depends on python3-pytest; however:
  Package python3-pytest is not installed.
 pbuilder-satisfydepends-dummy depends on python3-pytest-cov; however:
  Package python3-pytest-cov is not installed.
 pbuilder-satisfydepends-dummy depends on python3-shapely; however:
  Package python3-shapely is not installed.
 pbuilder-satisfydepends-dummy depends on python3-xarray; however:
  Package python3-xarray 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} dh-autoreconf{a} dh-python{a} dh-strip-nondeterminism{a} dwz{a} file{a} gettext{a} gettext-base{a} groff-base{a} intltool-debian{a} libarchive-zip-perl{a} libblas3{a} libbrotli1{a} libcurl3-gnutls{a} libcurl4-gnutls-dev{a} libdebhelper-perl{a} libdeflate-dev{a} libdeflate0{a} libelf1{a} libexpat1{a} libexpat1-dev{a} libfile-stripnondeterminism-perl{a} libgeos-3.9.0{a} libgeos-c1v5{a} libgfortran5{a} libicu67{a} libjbig-dev{a} libjbig0{a} libjpeg-dev{a} libjpeg62-turbo{a} libjpeg62-turbo-dev{a} libjs-jquery{a} libjs-jquery-hotkeys{a} libjs-jquery-isonscreen{a} libjs-jquery-metadata{a} libjs-jquery-tablesorter{a} libjs-jquery-throttle-debounce{a} liblapack3{a} liblzma-dev{a} libmagic-mgc{a} libmagic1{a} libmpdec3{a} libnghttp2-14{a} libpipeline1{a} libproj-dev{a} libproj22{a} libpsl5{a} libpython3-all-dev{a} libpython3-dev{a} libpython3-stdlib{a} libpython3.9{a} libpython3.9-dev{a} libpython3.9-minimal{a} libpython3.9-stdlib{a} librtmp1{a} libsigsegv2{a} libsqlite3-dev{a} libssh2-1{a} libsub-override-perl{a} libtiff-dev{a} libtiff5{a} libtiffxx5{a} libtool{a} libuchardet0{a} libwebp6{a} libxml2{a} m4{a} man-db{a} media-types{a} openssl{a} po-debconf{a} proj-bin{a} proj-data{a} python3{a} python3-all{a} python3-all-dev{a} python3-attr{a} python3-certifi{a} python3-cov-core{a} python3-coverage{a} python3-dateutil{a} python3-dev{a} python3-distutils{a} python3-importlib-metadata{a} python3-iniconfig{a} python3-lib2to3{a} python3-minimal{a} python3-mock{a} python3-more-itertools{a} python3-nose2{a} python3-numpy{a} python3-packaging{a} python3-pandas{a} python3-pandas-lib{a} python3-pbr{a} python3-pkg-resources{a} python3-pluggy{a} python3-py{a} python3-pyparsing{a} python3-pytest{a} python3-pytest-cov{a} python3-setuptools{a} python3-shapely{a} python3-six{a} python3-toml{a} python3-tz{a} python3-xarray{a} python3-zipp{a} python3.9{a} python3.9-dev{a} python3.9-minimal{a} zlib1g-dev{a} 
The following packages are RECOMMENDED but will NOT be installed:
  curl javascript-common libarchive-cpio-perl libltdl-dev libmail-sendmail-perl lynx publicsuffix python3-bottleneck python3-bs4 python3-dask python3-h5netcdf python3-html5lib python3-jinja2 python3-lxml python3-matplotlib python3-netcdf4 python3-numba python3-numexpr python3-odf python3-openpyxl python3-pygments python3-scipy python3-tables python3-xlwt python3-zarr wget 
0 packages upgraded, 119 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/63.3 MB of archives. After unpacking 254 MB will be used.
Writing extended state information...
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package bsdextrautils.
(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 ... 14463 files and directories currently installed.)
Preparing to unpack .../0-bsdextrautils_2.36.1-7_amd64.deb ...
Unpacking bsdextrautils (2.36.1-7) ...
Selecting previously unselected package libuchardet0:amd64.
Preparing to unpack .../1-libuchardet0_0.0.7-1_amd64.deb ...
Unpacking libuchardet0:amd64 (0.0.7-1) ...
Selecting previously unselected package groff-base.
Preparing to unpack .../2-groff-base_1.22.4-6_amd64.deb ...
Unpacking groff-base (1.22.4-6) ...
Selecting previously unselected package libpipeline1:amd64.
Preparing to unpack .../3-libpipeline1_1.5.3-1_amd64.deb ...
Unpacking libpipeline1:amd64 (1.5.3-1) ...
Selecting previously unselected package man-db.
Preparing to unpack .../4-man-db_2.9.4-2_amd64.deb ...
Unpacking man-db (2.9.4-2) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../5-libjs-jquery_3.5.1+dfsg+~3.5.5-7_all.deb ...
Unpacking libjs-jquery (3.5.1+dfsg+~3.5.5-7) ...
Selecting previously unselected package libjs-jquery-hotkeys.
Preparing to unpack .../6-libjs-jquery-hotkeys_0~20130707+git2d51e3a9+dfsg-2.1_all.deb ...
Unpacking libjs-jquery-hotkeys (0~20130707+git2d51e3a9+dfsg-2.1) ...
Selecting previously unselected package libpython3.9-minimal:amd64.
Preparing to unpack .../7-libpython3.9-minimal_3.9.1-4_amd64.deb ...
Unpacking libpython3.9-minimal:amd64 (3.9.1-4) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../8-libexpat1_2.2.10-1_amd64.deb ...
Unpacking libexpat1:amd64 (2.2.10-1) ...
Selecting previously unselected package python3.9-minimal.
Preparing to unpack .../9-python3.9-minimal_3.9.1-4_amd64.deb ...
Unpacking python3.9-minimal (3.9.1-4) ...
Setting up libpython3.9-minimal:amd64 (3.9.1-4) ...
Setting up libexpat1:amd64 (2.2.10-1) ...
Setting up python3.9-minimal (3.9.1-4) ...
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 ... 15356 files and directories currently installed.)
Preparing to unpack .../0-python3-minimal_3.9.1-1_amd64.deb ...
Unpacking python3-minimal (3.9.1-1) ...
Selecting previously unselected package media-types.
Preparing to unpack .../1-media-types_4.0.0_all.deb ...
Unpacking media-types (4.0.0) ...
Selecting previously unselected package libmpdec3:amd64.
Preparing to unpack .../2-libmpdec3_2.5.1-1_amd64.deb ...
Unpacking libmpdec3:amd64 (2.5.1-1) ...
Selecting previously unselected package libpython3.9-stdlib:amd64.
Preparing to unpack .../3-libpython3.9-stdlib_3.9.1-4_amd64.deb ...
Unpacking libpython3.9-stdlib:amd64 (3.9.1-4) ...
Selecting previously unselected package python3.9.
Preparing to unpack .../4-python3.9_3.9.1-4_amd64.deb ...
Unpacking python3.9 (3.9.1-4) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../5-libpython3-stdlib_3.9.1-1_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.9.1-1) ...
Setting up python3-minimal (3.9.1-1) ...
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 ... 15753 files and directories currently installed.)
Preparing to unpack .../000-python3_3.9.1-1_amd64.deb ...
Unpacking python3 (3.9.1-1) ...
Selecting previously unselected package openssl.
Preparing to unpack .../001-openssl_1.1.1j-1_amd64.deb ...
Unpacking openssl (1.1.1j-1) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../002-ca-certificates_20210119_all.deb ...
Unpacking ca-certificates (20210119) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../003-libmagic-mgc_1%3a5.39-3_amd64.deb ...
Unpacking libmagic-mgc (1:5.39-3) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../004-libmagic1_1%3a5.39-3_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.39-3) ...
Selecting previously unselected package file.
Preparing to unpack .../005-file_1%3a5.39-3_amd64.deb ...
Unpacking file (1:5.39-3) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../006-gettext-base_0.21-4_amd64.deb ...
Unpacking gettext-base (0.21-4) ...
Selecting previously unselected package libsigsegv2:amd64.
Preparing to unpack .../007-libsigsegv2_2.13-1_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.13-1) ...
Selecting previously unselected package m4.
Preparing to unpack .../008-m4_1.4.18-5_amd64.deb ...
Unpacking m4 (1.4.18-5) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../009-autoconf_2.69-14_all.deb ...
Unpacking autoconf (2.69-14) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../010-autotools-dev_20180224.1+nmu1_all.deb ...
Unpacking autotools-dev (20180224.1+nmu1) ...
Selecting previously unselected package automake.
Preparing to unpack .../011-automake_1%3a1.16.3-2_all.deb ...
Unpacking automake (1:1.16.3-2) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../012-autopoint_0.21-4_all.deb ...
Unpacking autopoint (0.21-4) ...
Selecting previously unselected package cython3.
Preparing to unpack .../013-cython3_0.29.21-3+b1_amd64.deb ...
Unpacking cython3 (0.29.21-3+b1) ...
Selecting previously unselected package libdebhelper-perl.
Preparing to unpack .../014-libdebhelper-perl_13.3.3_all.deb ...
Unpacking libdebhelper-perl (13.3.3) ...
Selecting previously unselected package libtool.
Preparing to unpack .../015-libtool_2.4.6-15_all.deb ...
Unpacking libtool (2.4.6-15) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../016-dh-autoreconf_20_all.deb ...
Unpacking dh-autoreconf (20) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../017-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 .../018-libsub-override-perl_0.09-2_all.deb ...
Unpacking libsub-override-perl (0.09-2) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../019-libfile-stripnondeterminism-perl_1.11.0-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (1.11.0-1) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../020-dh-strip-nondeterminism_1.11.0-1_all.deb ...
Unpacking dh-strip-nondeterminism (1.11.0-1) ...
Selecting previously unselected package libelf1:amd64.
Preparing to unpack .../021-libelf1_0.183-1_amd64.deb ...
Unpacking libelf1:amd64 (0.183-1) ...
Selecting previously unselected package dwz.
Preparing to unpack .../022-dwz_0.13+20210201-1_amd64.deb ...
Unpacking dwz (0.13+20210201-1) ...
Selecting previously unselected package libicu67:amd64.
Preparing to unpack .../023-libicu67_67.1-6_amd64.deb ...
Unpacking libicu67:amd64 (67.1-6) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../024-libxml2_2.9.10+dfsg-6.3+b1_amd64.deb ...
Unpacking libxml2:amd64 (2.9.10+dfsg-6.3+b1) ...
Selecting previously unselected package gettext.
Preparing to unpack .../025-gettext_0.21-4_amd64.deb ...
Unpacking gettext (0.21-4) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../026-intltool-debian_0.35.0+20060710.5_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.5) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../027-po-debconf_1.0.21+nmu1_all.deb ...
Unpacking po-debconf (1.0.21+nmu1) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../028-debhelper_13.3.3_all.deb ...
Unpacking debhelper (13.3.3) ...
Selecting previously unselected package python3-lib2to3.
Preparing to unpack .../029-python3-lib2to3_3.9.2-1_all.deb ...
Unpacking python3-lib2to3 (3.9.2-1) ...
Selecting previously unselected package python3-distutils.
Preparing to unpack .../030-python3-distutils_3.9.2-1_all.deb ...
Unpacking python3-distutils (3.9.2-1) ...
Selecting previously unselected package dh-python.
Preparing to unpack .../031-dh-python_4.20201102_all.deb ...
Unpacking dh-python (4.20201102) ...
Selecting previously unselected package libblas3:amd64.
Preparing to unpack .../032-libblas3_3.9.0-3_amd64.deb ...
Unpacking libblas3:amd64 (3.9.0-3) ...
Selecting previously unselected package libbrotli1:amd64.
Preparing to unpack .../033-libbrotli1_1.0.9-2+b2_amd64.deb ...
Unpacking libbrotli1:amd64 (1.0.9-2+b2) ...
Selecting previously unselected package libnghttp2-14:amd64.
Preparing to unpack .../034-libnghttp2-14_1.43.0-1_amd64.deb ...
Unpacking libnghttp2-14:amd64 (1.43.0-1) ...
Selecting previously unselected package libpsl5:amd64.
Preparing to unpack .../035-libpsl5_0.21.0-1.2_amd64.deb ...
Unpacking libpsl5:amd64 (0.21.0-1.2) ...
Selecting previously unselected package librtmp1:amd64.
Preparing to unpack .../036-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 .../037-libssh2-1_1.9.0-2_amd64.deb ...
Unpacking libssh2-1:amd64 (1.9.0-2) ...
Selecting previously unselected package libcurl3-gnutls:amd64.
Preparing to unpack .../038-libcurl3-gnutls_7.74.0-1.1_amd64.deb ...
Unpacking libcurl3-gnutls:amd64 (7.74.0-1.1) ...
Selecting previously unselected package libcurl4-gnutls-dev:amd64.
Preparing to unpack .../039-libcurl4-gnutls-dev_7.74.0-1.1_amd64.deb ...
Unpacking libcurl4-gnutls-dev:amd64 (7.74.0-1.1) ...
Selecting previously unselected package libdeflate0:amd64.
Preparing to unpack .../040-libdeflate0_1.7-1_amd64.deb ...
Unpacking libdeflate0:amd64 (1.7-1) ...
Selecting previously unselected package libdeflate-dev:amd64.
Preparing to unpack .../041-libdeflate-dev_1.7-1_amd64.deb ...
Unpacking libdeflate-dev:amd64 (1.7-1) ...
Selecting previously unselected package libexpat1-dev:amd64.
Preparing to unpack .../042-libexpat1-dev_2.2.10-1_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.2.10-1) ...
Selecting previously unselected package libgeos-3.9.0:amd64.
Preparing to unpack .../043-libgeos-3.9.0_3.9.0-1_amd64.deb ...
Unpacking libgeos-3.9.0:amd64 (3.9.0-1) ...
Selecting previously unselected package libgeos-c1v5:amd64.
Preparing to unpack .../044-libgeos-c1v5_3.9.0-1_amd64.deb ...
Unpacking libgeos-c1v5:amd64 (3.9.0-1) ...
Selecting previously unselected package libgfortran5:amd64.
Preparing to unpack .../045-libgfortran5_10.2.1-6_amd64.deb ...
Unpacking libgfortran5:amd64 (10.2.1-6) ...
Selecting previously unselected package libjbig0:amd64.
Preparing to unpack .../046-libjbig0_2.1-3.1+b2_amd64.deb ...
Unpacking libjbig0:amd64 (2.1-3.1+b2) ...
Selecting previously unselected package libjbig-dev:amd64.
Preparing to unpack .../047-libjbig-dev_2.1-3.1+b2_amd64.deb ...
Unpacking libjbig-dev:amd64 (2.1-3.1+b2) ...
Selecting previously unselected package libjpeg62-turbo:amd64.
Preparing to unpack .../048-libjpeg62-turbo_1%3a2.0.6-1_amd64.deb ...
Unpacking libjpeg62-turbo:amd64 (1:2.0.6-1) ...
Selecting previously unselected package libjpeg62-turbo-dev:amd64.
Preparing to unpack .../049-libjpeg62-turbo-dev_1%3a2.0.6-1_amd64.deb ...
Unpacking libjpeg62-turbo-dev:amd64 (1:2.0.6-1) ...
Selecting previously unselected package libjpeg-dev:amd64.
Preparing to unpack .../050-libjpeg-dev_1%3a2.0.6-1_amd64.deb ...
Unpacking libjpeg-dev:amd64 (1:2.0.6-1) ...
Selecting previously unselected package libjs-jquery-isonscreen.
Preparing to unpack .../051-libjs-jquery-isonscreen_1.2.0-1.1_all.deb ...
Unpacking libjs-jquery-isonscreen (1.2.0-1.1) ...
Selecting previously unselected package libjs-jquery-metadata.
Preparing to unpack .../052-libjs-jquery-metadata_12-3_all.deb ...
Unpacking libjs-jquery-metadata (12-3) ...
Selecting previously unselected package libjs-jquery-tablesorter.
Preparing to unpack .../053-libjs-jquery-tablesorter_1%3a2.31.3+dfsg1-1_all.deb ...
Unpacking libjs-jquery-tablesorter (1:2.31.3+dfsg1-1) ...
Selecting previously unselected package libjs-jquery-throttle-debounce.
Preparing to unpack .../054-libjs-jquery-throttle-debounce_1.1+dfsg.1-1.1_all.deb ...
Unpacking libjs-jquery-throttle-debounce (1.1+dfsg.1-1.1) ...
Selecting previously unselected package liblapack3:amd64.
Preparing to unpack .../055-liblapack3_3.9.0-3_amd64.deb ...
Unpacking liblapack3:amd64 (3.9.0-3) ...
Selecting previously unselected package liblzma-dev:amd64.
Preparing to unpack .../056-liblzma-dev_5.2.5-1.0_amd64.deb ...
Unpacking liblzma-dev:amd64 (5.2.5-1.0) ...
Selecting previously unselected package proj-data.
Preparing to unpack .../057-proj-data_8.0.0~rc1-1~exp1_all.deb ...
Unpacking proj-data (8.0.0~rc1-1~exp1) ...
Selecting previously unselected package libwebp6:amd64.
Preparing to unpack .../058-libwebp6_0.6.1-2+b1_amd64.deb ...
Unpacking libwebp6:amd64 (0.6.1-2+b1) ...
Selecting previously unselected package libtiff5:amd64.
Preparing to unpack .../059-libtiff5_4.2.0-1_amd64.deb ...
Unpacking libtiff5:amd64 (4.2.0-1) ...
Selecting previously unselected package libproj22:amd64.
Preparing to unpack .../060-libproj22_8.0.0~rc1-1~exp1_amd64.deb ...
Unpacking libproj22:amd64 (8.0.0~rc1-1~exp1) ...
Selecting previously unselected package libsqlite3-dev:amd64.
Preparing to unpack .../061-libsqlite3-dev_3.34.1-2_amd64.deb ...
Unpacking libsqlite3-dev:amd64 (3.34.1-2) ...
Selecting previously unselected package libtiffxx5:amd64.
Preparing to unpack .../062-libtiffxx5_4.2.0-1_amd64.deb ...
Unpacking libtiffxx5:amd64 (4.2.0-1) ...
Selecting previously unselected package zlib1g-dev:amd64.
Preparing to unpack .../063-zlib1g-dev_1%3a1.2.11.dfsg-2_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-2) ...
Selecting previously unselected package libtiff-dev:amd64.
Preparing to unpack .../064-libtiff-dev_4.2.0-1_amd64.deb ...
Unpacking libtiff-dev:amd64 (4.2.0-1) ...
Selecting previously unselected package libproj-dev:amd64.
Preparing to unpack .../065-libproj-dev_8.0.0~rc1-1~exp1_amd64.deb ...
Unpacking libproj-dev:amd64 (8.0.0~rc1-1~exp1) ...
Selecting previously unselected package libpython3.9:amd64.
Preparing to unpack .../066-libpython3.9_3.9.1-4_amd64.deb ...
Unpacking libpython3.9:amd64 (3.9.1-4) ...
Selecting previously unselected package libpython3.9-dev:amd64.
Preparing to unpack .../067-libpython3.9-dev_3.9.1-4_amd64.deb ...
Unpacking libpython3.9-dev:amd64 (3.9.1-4) ...
Selecting previously unselected package libpython3-dev:amd64.
Preparing to unpack .../068-libpython3-dev_3.9.1-1_amd64.deb ...
Unpacking libpython3-dev:amd64 (3.9.1-1) ...
Selecting previously unselected package libpython3-all-dev:amd64.
Preparing to unpack .../069-libpython3-all-dev_3.9.1-1_amd64.deb ...
Unpacking libpython3-all-dev:amd64 (3.9.1-1) ...
Selecting previously unselected package proj-bin.
Preparing to unpack .../070-proj-bin_8.0.0~rc1-1~exp1_amd64.deb ...
Unpacking proj-bin (8.0.0~rc1-1~exp1) ...
Selecting previously unselected package python3-all.
Preparing to unpack .../071-python3-all_3.9.1-1_amd64.deb ...
Unpacking python3-all (3.9.1-1) ...
Selecting previously unselected package python3.9-dev.
Preparing to unpack .../072-python3.9-dev_3.9.1-4_amd64.deb ...
Unpacking python3.9-dev (3.9.1-4) ...
Selecting previously unselected package python3-dev.
Preparing to unpack .../073-python3-dev_3.9.1-1_amd64.deb ...
Unpacking python3-dev (3.9.1-1) ...
Selecting previously unselected package python3-all-dev.
Preparing to unpack .../074-python3-all-dev_3.9.1-1_amd64.deb ...
Unpacking python3-all-dev (3.9.1-1) ...
Selecting previously unselected package python3-attr.
Preparing to unpack .../075-python3-attr_20.3.0-1_all.deb ...
Unpacking python3-attr (20.3.0-1) ...
Selecting previously unselected package python3-certifi.
Preparing to unpack .../076-python3-certifi_2020.6.20-1_all.deb ...
Unpacking python3-certifi (2020.6.20-1) ...
Selecting previously unselected package python3-pkg-resources.
Preparing to unpack .../077-python3-pkg-resources_52.0.0-1_all.deb ...
Unpacking python3-pkg-resources (52.0.0-1) ...
Selecting previously unselected package python3-coverage.
Preparing to unpack .../078-python3-coverage_5.1+dfsg.1-2+b2_amd64.deb ...
Unpacking python3-coverage (5.1+dfsg.1-2+b2) ...
Selecting previously unselected package python3-six.
Preparing to unpack .../079-python3-six_1.15.0-2_all.deb ...
Unpacking python3-six (1.15.0-2) ...
Selecting previously unselected package python3-nose2.
Preparing to unpack .../080-python3-nose2_0.9.2-1_all.deb ...
Unpacking python3-nose2 (0.9.2-1) ...
Selecting previously unselected package python3-cov-core.
Preparing to unpack .../081-python3-cov-core_1.15.0-3_all.deb ...
Unpacking python3-cov-core (1.15.0-3) ...
Selecting previously unselected package python3-dateutil.
Preparing to unpack .../082-python3-dateutil_2.8.1-5_all.deb ...
Unpacking python3-dateutil (2.8.1-5) ...
Selecting previously unselected package python3-more-itertools.
Preparing to unpack .../083-python3-more-itertools_4.2.0-3_all.deb ...
Unpacking python3-more-itertools (4.2.0-3) ...
Selecting previously unselected package python3-zipp.
Preparing to unpack .../084-python3-zipp_1.0.0-3_all.deb ...
Unpacking python3-zipp (1.0.0-3) ...
Selecting previously unselected package python3-importlib-metadata.
Preparing to unpack .../085-python3-importlib-metadata_1.6.0-2_all.deb ...
Unpacking python3-importlib-metadata (1.6.0-2) ...
Selecting previously unselected package python3-iniconfig.
Preparing to unpack .../086-python3-iniconfig_1.1.1-1_all.deb ...
Unpacking python3-iniconfig (1.1.1-1) ...
Selecting previously unselected package python3-setuptools.
Preparing to unpack .../087-python3-setuptools_52.0.0-1_all.deb ...
Unpacking python3-setuptools (52.0.0-1) ...
Selecting previously unselected package python3-pbr.
Preparing to unpack .../088-python3-pbr_5.5.0-2_all.deb ...
Unpacking python3-pbr (5.5.0-2) ...
Selecting previously unselected package python3-mock.
Preparing to unpack .../089-python3-mock_4.0.3-1_all.deb ...
Unpacking python3-mock (4.0.3-1) ...
Selecting previously unselected package python3-numpy.
Preparing to unpack .../090-python3-numpy_1%3a1.19.5-1_amd64.deb ...
Unpacking python3-numpy (1:1.19.5-1) ...
Selecting previously unselected package python3-pyparsing.
Preparing to unpack .../091-python3-pyparsing_2.4.7-1_all.deb ...
Unpacking python3-pyparsing (2.4.7-1) ...
Selecting previously unselected package python3-packaging.
Preparing to unpack .../092-python3-packaging_20.9-2_all.deb ...
Unpacking python3-packaging (20.9-2) ...
Selecting previously unselected package python3-tz.
Preparing to unpack .../093-python3-tz_2021.1-1_all.deb ...
Unpacking python3-tz (2021.1-1) ...
Selecting previously unselected package python3-pandas-lib:amd64.
Preparing to unpack .../094-python3-pandas-lib_1.1.5+dfsg-2_amd64.deb ...
Unpacking python3-pandas-lib:amd64 (1.1.5+dfsg-2) ...
Selecting previously unselected package python3-pandas.
Preparing to unpack .../095-python3-pandas_1.1.5+dfsg-2_all.deb ...
Unpacking python3-pandas (1.1.5+dfsg-2) ...
Selecting previously unselected package python3-pluggy.
Preparing to unpack .../096-python3-pluggy_0.13.0-6_all.deb ...
Unpacking python3-pluggy (0.13.0-6) ...
Selecting previously unselected package python3-py.
Preparing to unpack .../097-python3-py_1.10.0-1_all.deb ...
Unpacking python3-py (1.10.0-1) ...
Selecting previously unselected package python3-toml.
Preparing to unpack .../098-python3-toml_0.10.1-1_all.deb ...
Unpacking python3-toml (0.10.1-1) ...
Selecting previously unselected package python3-pytest.
Preparing to unpack .../099-python3-pytest_6.0.2-2_all.deb ...
Unpacking python3-pytest (6.0.2-2) ...
Selecting previously unselected package python3-pytest-cov.
Preparing to unpack .../100-python3-pytest-cov_2.10.1-1_all.deb ...
Unpacking python3-pytest-cov (2.10.1-1) ...
Selecting previously unselected package python3-shapely.
Preparing to unpack .../101-python3-shapely_1.7.1-2_amd64.deb ...
Unpacking python3-shapely (1.7.1-2) ...
Selecting previously unselected package python3-xarray.
Preparing to unpack .../102-python3-xarray_0.16.2-2_all.deb ...
Unpacking python3-xarray (0.16.2-2) ...
Setting up media-types (4.0.0) ...
Setting up libpipeline1:amd64 (1.5.3-1) ...
Setting up libpsl5:amd64 (0.21.0-1.2) ...
Setting up proj-data (8.0.0~rc1-1~exp1) ...
Setting up bsdextrautils (2.36.1-7) ...
update-alternatives: using /usr/bin/write.ul to provide /usr/bin/write (write) in auto mode
Setting up libicu67:amd64 (67.1-6) ...
Setting up libmagic-mgc (1:5.39-3) ...
Setting up libarchive-zip-perl (1.68-1) ...
Setting up libdebhelper-perl (13.3.3) ...
Setting up libbrotli1:amd64 (1.0.9-2+b2) ...
Setting up libnghttp2-14:amd64 (1.43.0-1) ...
Setting up libmagic1:amd64 (1:5.39-3) ...
Setting up libdeflate0:amd64 (1.7-1) ...
Setting up gettext-base (0.21-4) ...
Setting up file (1:5.39-3) ...
Setting up libjs-jquery-throttle-debounce (1.1+dfsg.1-1.1) ...
Setting up libjbig0:amd64 (2.1-3.1+b2) ...
Setting up autotools-dev (20180224.1+nmu1) ...
Setting up libblas3:amd64 (3.9.0-3) ...
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.2.10-1) ...
Setting up libjpeg62-turbo:amd64 (1:2.0.6-1) ...
Setting up libsqlite3-dev:amd64 (3.34.1-2) ...
Setting up libjpeg62-turbo-dev:amd64 (1:2.0.6-1) ...
Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ...
Setting up libsigsegv2:amd64 (2.13-1) ...
Setting up autopoint (0.21-4) ...
Setting up libwebp6:amd64 (0.6.1-2+b1) ...
Setting up libgfortran5:amd64 (10.2.1-6) ...
Setting up liblzma-dev:amd64 (5.2.5-1.0) ...
Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-2) ...
Setting up libgeos-3.9.0:amd64 (3.9.0-1) ...
Setting up libuchardet0:amd64 (0.0.7-1) ...
Setting up libmpdec3:amd64 (2.5.1-1) ...
Setting up libsub-override-perl (0.09-2) ...
Setting up libssh2-1:amd64 (1.9.0-2) ...
Setting up libtiff5:amd64 (4.2.0-1) ...
Setting up libjs-jquery (3.5.1+dfsg+~3.5.5-7) ...
Setting up libjs-jquery-hotkeys (0~20130707+git2d51e3a9+dfsg-2.1) ...
Setting up openssl (1.1.1j-1) ...
Setting up libdeflate-dev:amd64 (1.7-1) ...
Setting up libelf1:amd64 (0.183-1) ...
Setting up libxml2:amd64 (2.9.10+dfsg-6.3+b1) ...
Setting up libpython3.9-stdlib:amd64 (3.9.1-4) ...
Setting up libpython3-stdlib:amd64 (3.9.1-1) ...
Setting up libtiffxx5:amd64 (4.2.0-1) ...
Setting up libfile-stripnondeterminism-perl (1.11.0-1) ...
Setting up liblapack3:amd64 (3.9.0-3) ...
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-4) ...
Setting up libtool (2.4.6-15) ...
Setting up libjpeg-dev:amd64 (1:2.0.6-1) ...
Setting up libjbig-dev:amd64 (2.1-3.1+b2) ...
Setting up m4 (1.4.18-5) ...
Setting up libcurl3-gnutls:amd64 (7.74.0-1.1) ...
Setting up libproj22:amd64 (8.0.0~rc1-1~exp1) ...
Setting up libcurl4-gnutls-dev:amd64 (7.74.0-1.1) ...
Setting up intltool-debian (0.35.0+20060710.5) ...
Setting up ca-certificates (20210119) ...
Updating certificates in /etc/ssl/certs...
129 added, 0 removed; done.
Setting up libpython3.9:amd64 (3.9.1-4) ...
Setting up libtiff-dev:amd64 (4.2.0-1) ...
Setting up libjs-jquery-metadata (12-3) ...
Setting up libproj-dev:amd64 (8.0.0~rc1-1~exp1) ...
Setting up libjs-jquery-isonscreen (1.2.0-1.1) ...
Setting up libgeos-c1v5:amd64 (3.9.0-1) ...
Setting up autoconf (2.69-14) ...
Setting up dh-strip-nondeterminism (1.11.0-1) ...
Setting up dwz (0.13+20210201-1) ...
Setting up libjs-jquery-tablesorter (1:2.31.3+dfsg1-1) ...
Setting up groff-base (1.22.4-6) ...
Setting up python3.9 (3.9.1-4) ...
Setting up automake (1:1.16.3-2) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
Setting up po-debconf (1.0.21+nmu1) ...
Setting up proj-bin (8.0.0~rc1-1~exp1) ...
Setting up libpython3.9-dev:amd64 (3.9.1-4) ...
Setting up python3 (3.9.1-1) ...
Setting up man-db (2.9.4-2) ...
Building database of manual pages ...
Setting up python3-tz (2021.1-1) ...
Setting up python3-six (1.15.0-2) ...
Setting up dh-autoreconf (20) ...
Setting up python3-pyparsing (2.4.7-1) ...
Setting up python3-certifi (2020.6.20-1) ...
Setting up cython3 (0.29.21-3+b1) ...
Setting up python3-toml (0.10.1-1) ...
Setting up python3.9-dev (3.9.1-4) ...
Setting up python3-dateutil (2.8.1-5) ...
Setting up python3-lib2to3 (3.9.2-1) ...
Setting up python3-pkg-resources (52.0.0-1) ...
Setting up python3-distutils (3.9.2-1) ...
Setting up dh-python (4.20201102) ...
Setting up python3-more-itertools (4.2.0-3) ...
Setting up python3-iniconfig (1.1.1-1) ...
Setting up python3-attr (20.3.0-1) ...
Setting up libpython3-dev:amd64 (3.9.1-1) ...
Setting up python3-setuptools (52.0.0-1) ...
Setting up python3-py (1.10.0-1) ...
Setting up python3-pbr (5.5.0-2) ...
Setting up python3-all (3.9.1-1) ...
Setting up python3-coverage (5.1+dfsg.1-2+b2) ...
Setting up debhelper (13.3.3) ...
Setting up python3-nose2 (0.9.2-1) ...
Setting up python3-zipp (1.0.0-3) ...
Setting up python3-mock (4.0.3-1) ...
Setting up python3-packaging (20.9-2) ...
Setting up libpython3-all-dev:amd64 (3.9.1-1) ...
Setting up python3-dev (3.9.1-1) ...
Setting up python3-numpy (1:1.19.5-1) ...
Setting up python3-all-dev (3.9.1-1) ...
Setting up python3-shapely (1.7.1-2) ...
Setting up python3-importlib-metadata (1.6.0-2) ...
Setting up python3-cov-core (1.15.0-3) ...
Setting up python3-pandas-lib:amd64 (1.1.5+dfsg-2) ...
Setting up python3-pandas (1.1.5+dfsg-2) ...
Setting up python3-pluggy (0.13.0-6) ...
Setting up python3-pytest (6.0.2-2) ...
Setting up python3-xarray (0.16.2-2) ...
Setting up python3-pytest-cov (2.10.1-1) ...
Processing triggers for libc-bin (2.31-9) ...
Processing triggers for ca-certificates (20210119) ...
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
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
  libfakeroot
The following NEW packages will be installed:
  fakeroot libfakeroot
debconf: delaying package configuration, since apt-utils is not installed
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/134 kB of archives.
After this operation, 397 kB of additional disk space will be used.
Selecting previously unselected package libfakeroot: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 ... 21494 files and directories currently installed.)
Preparing to unpack .../libfakeroot_1.25.3-1.1_amd64.deb ...
Unpacking libfakeroot:amd64 (1.25.3-1.1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../fakeroot_1.25.3-1.1_amd64.deb ...
Unpacking fakeroot (1.25.3-1.1) ...
Setting up libfakeroot:amd64 (1.25.3-1.1) ...
Setting up fakeroot (1.25.3-1.1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Processing triggers for man-db (2.9.4-2) ...
Processing triggers for libc-bin (2.31-9) ...
I: Copying back the cached apt archive contents
I: Building the package
I: Running cd /build/python-pyproj-3.0.0/ && env PATH="/usr/sbin:/usr/bin:/sbin:/bin" HOME="/nonexistent" dpkg-buildpackage -us -uc 
dpkg-buildpackage: info: source package python-pyproj
dpkg-buildpackage: info: source version 3.0.0-3
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
 fakeroot debian/rules clean
dh clean \
	--with python3 \
	--buildsystem=pybuild
   dh_auto_clean -O--buildsystem=pybuild
I: pybuild base:232: python3.9 setup.py clean 
running clean
removing '/build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build' (and everything under it)
'build/bdist.linux-x86_64' does not exist -- can't clean it
'build/scripts-3.9' does not exist -- can't clean it
   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 python-pyproj using existing ./python-pyproj_3.0.0.orig.tar.gz
dpkg-source: info: building python-pyproj in python-pyproj_3.0.0-3.debian.tar.xz
dpkg-source: info: building python-pyproj in python-pyproj_3.0.0-3.dsc
 debian/rules build
dh build \
	--with python3 \
	--buildsystem=pybuild
   dh_update_autotools_config -O--buildsystem=pybuild
   dh_autoreconf -O--buildsystem=pybuild
   dh_auto_configure -O--buildsystem=pybuild
I: pybuild base:232: python3.9 setup.py config 
PROJ_DIR is set, using existing proj4 installation..

running config
   dh_auto_build -O--buildsystem=pybuild
I: pybuild base:232: /usr/bin/python3 setup.py build 
PROJ_DIR is set, using existing proj4 installation..

running build
running build_py
creating /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_datadir.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_awips221.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_cli.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_transform.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_list.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_datum.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_aoi.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_proj.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_utils.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_pickle.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/conftest.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_datum_shift.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_transformer.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_network.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_doctest_wrapper.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/__init__.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_show_versions.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_geod.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_exception_logging.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_database.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
copying test/test_sync.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/test
creating /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/__main__.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/geod.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/_show_versions.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/utils.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/proj.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/transformer.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/compat.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/exceptions.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/aoi.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/sync.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/__init__.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/network.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/enums.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/datadir.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
creating /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/crs
copying pyproj/crs/coordinate_operation.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/crs
copying pyproj/crs/_cf1x8.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/crs
copying pyproj/crs/crs.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/crs
copying pyproj/crs/coordinate_system.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/crs
copying pyproj/crs/datum.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/crs
copying pyproj/crs/__init__.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/crs
copying pyproj/crs/enums.py -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/crs
copying pyproj/_network.pyi -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/_crs.pyi -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/database.pyi -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/_geod.pyi -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/_transformer.pyi -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/_datadir.pyi -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/list.pyi -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/_sync.pyi -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
copying pyproj/py.typed -> /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj
running build_ext
building 'pyproj._geod' extension
creating build
creating build/temp.linux-x86_64-3.9
creating build/temp.linux-x86_64-3.9/pyproj
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-euU3fN/python3.9-3.9.1=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include -I/usr/include/python3.9 -c pyproj/_geod.c -o build/temp.linux-x86_64-3.9/pyproj/_geod.o
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.9/pyproj/_geod.o -lproj -o /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/_geod.cpython-39-x86_64-linux-gnu.so
building 'pyproj._crs' extension
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-euU3fN/python3.9-3.9.1=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include -I/usr/include/python3.9 -c pyproj/_crs.c -o build/temp.linux-x86_64-3.9/pyproj/_crs.o
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.9/pyproj/_crs.o -lproj -o /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/_crs.cpython-39-x86_64-linux-gnu.so
building 'pyproj._transformer' extension
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-euU3fN/python3.9-3.9.1=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include -I/usr/include/python3.9 -c pyproj/_transformer.c -o build/temp.linux-x86_64-3.9/pyproj/_transformer.o
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.9/pyproj/_transformer.o -lproj -o /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/_transformer.cpython-39-x86_64-linux-gnu.so
building 'pyproj._compat' extension
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-euU3fN/python3.9-3.9.1=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include -I/usr/include/python3.9 -c pyproj/_compat.c -o build/temp.linux-x86_64-3.9/pyproj/_compat.o
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.9/pyproj/_compat.o -lproj -o /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/_compat.cpython-39-x86_64-linux-gnu.so
building 'pyproj.database' extension
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-euU3fN/python3.9-3.9.1=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include -I/usr/include/python3.9 -c pyproj/database.c -o build/temp.linux-x86_64-3.9/pyproj/database.o
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.9/pyproj/database.o -lproj -o /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/database.cpython-39-x86_64-linux-gnu.so
building 'pyproj._datadir' extension
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-euU3fN/python3.9-3.9.1=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include -I/usr/include/python3.9 -c pyproj/_datadir.c -o build/temp.linux-x86_64-3.9/pyproj/_datadir.o
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.9/pyproj/_datadir.o -lproj -o /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/_datadir.cpython-39-x86_64-linux-gnu.so
building 'pyproj.list' extension
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-euU3fN/python3.9-3.9.1=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include -I/usr/include/python3.9 -c pyproj/list.c -o build/temp.linux-x86_64-3.9/pyproj/list.o
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.9/pyproj/list.o -lproj -o /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/list.cpython-39-x86_64-linux-gnu.so
building 'pyproj._network' extension
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-euU3fN/python3.9-3.9.1=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include -I/usr/include/python3.9 -c pyproj/_network.c -o build/temp.linux-x86_64-3.9/pyproj/_network.o
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.9/pyproj/_network.o -lproj -o /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/_network.cpython-39-x86_64-linux-gnu.so
building 'pyproj._sync' extension
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-euU3fN/python3.9-3.9.1=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include -I/usr/include/python3.9 -c pyproj/_sync.c -o build/temp.linux-x86_64-3.9/pyproj/_sync.o
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 -ffile-prefix-map=/build/python-pyproj-3.0.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.9/pyproj/_sync.o -lproj -o /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/_sync.cpython-39-x86_64-linux-gnu.so
   debian/rules override_dh_auto_test
make[1]: Entering directory '/build/python-pyproj-3.0.0'
dh_auto_test
I: pybuild base:232: cd /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build; python3.9 -m pytest -v -m "not network and not cli and not grid"
============================= test session starts ==============================
platform linux -- Python 3.9.1+, pytest-6.0.2, py-1.10.0, pluggy-0.13.0 -- /usr/bin/python3.9
cachedir: .pytest_cache
rootdir: /build/python-pyproj-3.0.0, configfile: pytest.ini
plugins: cov-2.10.1
collecting ... collected 334 items / 58 deselected / 276 selected

test/test_aoi.py::test_backwards_compatible_import_paths PASSED          [  0%]
test/test_aoi.py::test_contains PASSED                                   [  0%]
test/test_aoi.py::test_not_contains PASSED                               [  1%]
test/test_aoi.py::test_intersects PASSED                                 [  1%]
test/test_aoi.py::test_not_intersects PASSED                             [  1%]
test/test_awips221.py::test_awips221 PASSED                              [  2%]
test/test_database.py::test_backwards_compatible_import_paths PASSED     [  2%]
test/test_database.py::test_units_map__default PASSED                    [  2%]
test/test_database.py::test_units_map__category[linear] PASSED           [  3%]
test/test_database.py::test_units_map__category[linear_per_time] PASSED  [  3%]
test/test_database.py::test_units_map__category[angular] PASSED          [  3%]
test/test_database.py::test_units_map__category[angular_per_time] PASSED [  4%]
test/test_database.py::test_units_map__category[scale] PASSED            [  4%]
test/test_database.py::test_units_map__category[scale_per_time] PASSED   [  5%]
test/test_database.py::test_units_map__category[time] PASSED             [  5%]
test/test_database.py::test_units_map__auth_name[EPSG] PASSED            [  5%]
test/test_database.py::test_units_map__auth_name[PROJ] PASSED            [  6%]
test/test_database.py::test_units_map__deprecated[zzz] PASSED            [  6%]
test/test_database.py::test_units_map__deprecated[True0] PASSED          [  6%]
test/test_database.py::test_units_map__deprecated[True1] PASSED          [  7%]
test/test_database.py::test_units_map__invalid[None-1] PASSED            [  7%]
test/test_database.py::test_units_map__invalid[1-None] PASSED            [  7%]
test/test_database.py::test_get_authorities PASSED                       [  8%]
test/test_database.py::test_get_codes[IGNF-PJType.ELLIPSOID-False] PASSED [  8%]
test/test_database.py::test_get_codes[EPSG-PJType.CRS-False] PASSED      [  9%]
test/test_database.py::test_get_codes[EPSG-PJType.CRS-True] PASSED       [  9%]
test/test_database.py::test_get_codes[PROJ-PJType.ELLIPSOID-False] PASSED [  9%]
test/test_database.py::test_get_codes[IGNF-ELLIPSOID-False] PASSED       [ 10%]
test/test_database.py::test_get_codes[EPSG-CRS-False] PASSED             [ 10%]
test/test_database.py::test_get_codes[EPSG-crs-True] PASSED              [ 10%]
test/test_database.py::test_get_codes[PROJ-ellipsoid-False] PASSED       [ 11%]
test/test_database.py::test_get_codes__empty[blob-BOUND_CRS] PASSED      [ 11%]
test/test_database.py::test_get_codes__empty[PROJ-PJType.BOUND_CRS] PASSED [ 11%]
test/test_database.py::test_get_codes__empty[ITRF-PJType.BOUND_CRS] PASSED [ 12%]
test/test_database.py::test_get_codes__invalid_auth PASSED               [ 12%]
test/test_database.py::test_get_codes__invalid_code PASSED               [ 13%]
test/test_database.py::test_query_crs_info[None-None-False] PASSED       [ 13%]
test/test_database.py::test_query_crs_info[EPSG-PJType.PROJECTED_CRS-False] PASSED [ 13%]
test/test_database.py::test_query_crs_info[EPSG-PJType.PROJECTED_CRS-True] PASSED [ 14%]
test/test_database.py::test_query_crs_info[IGNF-pj_type3-False] PASSED   [ 14%]
test/test_database.py::test_query_crs_info[EPSG-PROJECTED_CRS-False] PASSED [ 14%]
test/test_database.py::test_query_crs_info[EPSG-Projected_Crs-True] PASSED [ 15%]
test/test_database.py::test_query_crs_info__empty[blob-BOUND_CRS] PASSED [ 15%]
test/test_database.py::test_query_crs_info__empty[IGNF-PJType.ELLIPSOID] PASSED [ 15%]
test/test_database.py::test_query_crs_info__empty[PROJ-PJType.BOUND_CRS] PASSED [ 16%]
test/test_database.py::test_query_crs_info__empty[ITRF-PJType.BOUND_CRS] PASSED [ 16%]
test/test_database.py::test_query_crs_info__invalid_auth PASSED          [ 17%]
test/test_database.py::test_query_crs_info__invalid_code PASSED          [ 17%]
test/test_database.py::test_query_crs_info__aoi PASSED                   [ 17%]
test/test_database.py::test_query_crs_info__aoi_contains PASSED          [ 18%]
test/test_database.py::test_query_utm_crs_info__aoi_datum_name[WGS 84] PASSED [ 18%]
test/test_database.py::test_query_utm_crs_info__aoi_datum_name[WGS84] PASSED [ 18%]
test/test_database.py::test_query_utm_crs_info__aoi_datum_name[NAD27] PASSED [ 19%]
test/test_database.py::test_query_utm_crs_info__aoi_contains PASSED      [ 19%]
test/test_datadir.py::test_get_data_dir__missing PASSED                  [ 19%]
test/test_datadir.py::test_pyproj_global_context_initialize__datadir_missing PASSED [ 20%]
test/test_datadir.py::test_get_data_dir__from_user[str] PASSED           [ 20%]
test/test_datadir.py::test_get_data_dir__from_user[Path] PASSED          [ 21%]
test/test_datadir.py::test_get_data_dir__internal PASSED                 [ 21%]
test/test_datadir.py::test_get_data_dir__from_env_var PASSED             [ 21%]
test/test_datadir.py::test_get_data_dir__from_env_var__multiple PASSED   [ 22%]
test/test_datadir.py::test_get_data_dir__from_prefix PASSED              [ 22%]
test/test_datadir.py::test_get_data_dir__from_path PASSED                [ 22%]
test/test_datadir.py::test_append_data_dir__internal[str] PASSED         [ 23%]
test/test_datadir.py::test_append_data_dir__internal[Path] PASSED        [ 23%]
test/test_datadir.py::test_creating_multiple_crs_without_file_limit PASSED [ 23%]
test/test_datadir.py::test_get_user_data_dir PASSED                      [ 24%]
test/test_datadir.py::test_set_use_global_context__default_on PASSED     [ 24%]
test/test_datadir.py::test_set_use_global_context__default_off PASSED    [ 25%]
test/test_datadir.py::test_set_use_global_context__default PASSED        [ 25%]
test/test_datadir.py::test_set_use_global_context__on PASSED             [ 25%]
test/test_datadir.py::test_set_use_global_context__off PASSED            [ 26%]
test/test_datadir.py::test_proj_debug_logging FAILED                     [ 26%]
test/test_datadir.py::test_proj_debug_logging__error PASSED              [ 26%]
test/test_datum_shift.py::test_shift_wgs84_to_utm33 PASSED               [ 27%]
test/test_datum_shift.py::test_shift_utm33_to_wgs84 PASSED               [ 27%]
test/test_datum_shift.py::test_shift_wgs84_to_gaussb_no_ellisoidal_height PASSED [ 27%]
test/test_datum_shift.py::test_shift_gaussb_to_wgs84_no_ellisoidal_height PASSED [ 28%]
test/test_doctest_wrapper.py::test_doctests PASSED                       [ 28%]
test/test_exception_logging.py::test_proj_exception PASSED               [ 28%]
test/test_exception_logging.py::test_crs_exception PASSED                [ 29%]
test/test_geod.py::test_geod_inverse_transform PASSED                    [ 29%]
test/test_geod.py::test_geod_cities PASSED                               [ 30%]
test/test_geod.py::test_line_length__single_point PASSED                 [ 30%]
test/test_geod.py::test_line_length__radians PASSED                      [ 30%]
test/test_geod.py::test_line_lengths__single_point PASSED                [ 31%]
test/test_geod.py::test_line_lengths__radians PASSED                     [ 31%]
test/test_geod.py::test_polygon_area_perimeter__single_point PASSED      [ 31%]
test/test_geod.py::test_geometry_length__point PASSED                    [ 32%]
test/test_geod.py::test_geometry_length__linestring PASSED               [ 32%]
test/test_geod.py::test_geometry_length__linestring__radians PASSED      [ 32%]
test/test_geod.py::test_geometry_length__linearring PASSED               [ 33%]
test/test_geod.py::test_geometry_length__polygon PASSED                  [ 33%]
test/test_geod.py::test_geometry_length__polygon__radians PASSED         [ 34%]
test/test_geod.py::test_geometry_length__multipolygon PASSED             [ 34%]
test/test_geod.py::test_geometry_length__multipolygon__radians PASSED    [ 34%]
test/test_geod.py::test_geometry_length__multilinestring PASSED          [ 35%]
test/test_geod.py::test_geometry_length__multipoint PASSED               [ 35%]
test/test_geod.py::test_geometry_area_perimeter__point PASSED            [ 35%]
test/test_geod.py::test_geometry_area_perimeter__linestring PASSED       [ 36%]
test/test_geod.py::test_geometry_area_perimeter__linestring__radians PASSED [ 36%]
test/test_geod.py::test_geometry_area_perimeter__linearring PASSED       [ 36%]
test/test_geod.py::test_geometry_area_perimeter__polygon PASSED          [ 37%]
test/test_geod.py::test_geometry_area_perimeter__polygon__radians PASSED [ 37%]
test/test_geod.py::test_geometry_area_perimeter__polygon__holes PASSED   [ 38%]
test/test_geod.py::test_geometry_area_perimeter__multipolygon PASSED     [ 38%]
test/test_geod.py::test_geometry_area_perimeter__multipolygon__radians PASSED [ 38%]
test/test_geod.py::test_geometry_area_perimeter__multilinestring PASSED  [ 39%]
test/test_geod.py::test_geometry_area_perimeter__multipoint PASSED       [ 39%]
test/test_geod.py::test_geod_fwd_honours_input_types[10.0-lat0-az0] PASSED [ 39%]
test/test_geod.py::test_geod_fwd_honours_input_types[10.0-lat1-az1] PASSED [ 40%]
test/test_geod.py::test_geod_fwd_honours_input_types[lon2-10.0-az2] PASSED [ 40%]
test/test_geod.py::test_geod_fwd_honours_input_types[lon3-lat3-10.0] PASSED [ 40%]
test/test_geod.py::test_geod_fwd_honours_input_types[lon4-10.0-az4] PASSED [ 41%]
test/test_geod.py::test_geod_fwd_honours_input_types[lon5-lat5-10.0] PASSED [ 41%]
test/test_geod.py::test_geod_inv_honours_input_types[10.0-lats10-lons20] PASSED [ 42%]
test/test_geod.py::test_geod_inv_honours_input_types[10.0-lats11-lons21] PASSED [ 42%]
test/test_geod.py::test_geod_inv_honours_input_types[lons12-10.0-lons22] PASSED [ 42%]
test/test_geod.py::test_geod_inv_honours_input_types[lons13-lats13-10.0] PASSED [ 43%]
test/test_geod.py::test_geod_inv_honours_input_types[lons14-10.0-lons24] PASSED [ 43%]
test/test_geod.py::test_geod_inv_honours_input_types[lons15-lats15-10.0] PASSED [ 43%]
test/test_list.py::test_backwards_compatible_import_paths PASSED         [ 44%]
test/test_list.py::test_get_ellps_map PASSED                             [ 44%]
test/test_list.py::test_get_prime_meridians_map PASSED                   [ 44%]
test/test_list.py::test_get_proj_operations_map PASSED                   [ 45%]
test/test_network.py::test_ca_bundle_path__default PASSED                [ 45%]
test/test_network.py::test_ca_bundle_path__always_certifi[PROJ_CURL_CA_BUNDLE] PASSED [ 46%]
test/test_network.py::test_ca_bundle_path__always_certifi[CURL_CA_BUNDLE] PASSED [ 46%]
test/test_network.py::test_ca_bundle_path__always_certifi[SSL_CERT_FILE] PASSED [ 46%]
test/test_network.py::test_ca_bundle_path__skip PASSED                   [ 47%]
test/test_network.py::test_ca_bundle_path__env_var_skip[PROJ_CURL_CA_BUNDLE] PASSED [ 47%]
test/test_network.py::test_ca_bundle_path__env_var_skip[CURL_CA_BUNDLE] PASSED [ 47%]
test/test_network.py::test_ca_bundle_path__env_var_skip[SSL_CERT_FILE] PASSED [ 48%]
test/test_network.py::test_ca_bundle_path__custom_path[PROJ_CURL_CA_BUNDLE] PASSED [ 48%]
test/test_network.py::test_ca_bundle_path__custom_path[CURL_CA_BUNDLE] PASSED [ 48%]
test/test_network.py::test_ca_bundle_path__custom_path[SSL_CERT_FILE] PASSED [ 49%]
test/test_pickle.py::test_pickle PASSED                                  [ 49%]
test/test_proj.py::BasicTest::testInitWithBackupString4 PASSED           [ 50%]
test/test_proj.py::BasicTest::testProjAwips221 PASSED                    [ 50%]
test/test_proj.py::BasicTest::test_from_dict_with_bool PASSED            [ 50%]
test/test_proj.py::InverseHammerTest::test_forward PASSED                [ 51%]
test/test_proj.py::InverseHammerTest::test_inverse PASSED                [ 51%]
test/test_proj.py::TypeError_Transform_Issue8_Test::test_tranform_none_1st_parmeter PASSED [ 51%]
test/test_proj.py::TypeError_Transform_Issue8_Test::test_tranform_none_2nd_parmeter PASSED [ 52%]
test/test_proj.py::Geod_NoDefs_Issue22_Test::test_geod_nodefs PASSED     [ 52%]
test/test_proj.py::ProjLatLongTypeErrorTest::test_latlong_typeerror PASSED [ 52%]
test/test_proj.py::ForwardInverseTest::test_fwd_inv PASSED               [ 53%]
test/test_proj.py::GeodSharedMemoryBugTestIssue64::test_distances PASSED [ 53%]
test/test_proj.py::GeodSharedMemoryBugTestIssue64::test_not_shared_memory PASSED [ 53%]
test/test_proj.py::ReprTests::test_ellps_name_round_trip PASSED          [ 54%]
test/test_proj.py::ReprTests::test_repr PASSED                           [ 54%]
test/test_proj.py::ReprTests::test_sphere PASSED                         [ 55%]
test/test_proj.py::TestRadians::test_fwd_radians PASSED                  [ 55%]
test/test_proj.py::TestRadians::test_inv_radians PASSED                  [ 55%]
test/test_proj.py::TestRadians::test_npts_radians PASSED                 [ 56%]
test/test_proj.py::Geod_NaN_Issue112_Test::test_geod_nans PASSED         [ 56%]
test/test_proj.py::test_proj_equals PASSED                               [ 56%]
test/test_proj.py::test_initialize_proj_crs_no_proj4 PASSED              [ 57%]
test/test_proj.py::test_initialize_proj_crs_no_plus PASSED               [ 57%]
test/test_proj.py::test_initialize_projparams_with_kwargs PASSED         [ 57%]
test/test_proj.py::test_equals_different_type PASSED                     [ 58%]
test/test_proj.py::test_is_exact_same_different_type PASSED              [ 58%]
test/test_proj.py::test_reset_errno PASSED                               [ 59%]
test/test_proj.py::test_get_factors__2d_input[False] PASSED              [ 59%]
test/test_proj.py::test_get_factors__2d_input[True] PASSED               [ 59%]
test/test_proj.py::test_get_factors PASSED                               [ 60%]
test/test_proj.py::test_get_factors__nan_inf PASSED                      [ 60%]
test/test_proj.py::test_get_factors__errcheck PASSED                     [ 60%]
test/test_proj.py::test_numpy_bool_kwarg_false PASSED                    [ 61%]
test/test_proj.py::test_numpy_bool_kwarg_true PASSED                     [ 61%]
test/test_proj.py::test_network__disable PASSED                          [ 61%]
test/test_proj.py::test_network__enable PASSED                           [ 62%]
test/test_proj.py::test_network__default PASSED                          [ 62%]
test/test_proj.py::test_radians PASSED                                   [ 63%]
test/test_show_versions.py::test_get_proj_info PASSED                    [ 63%]
test/test_show_versions.py::test_get_sys_info PASSED                     [ 63%]
test/test_show_versions.py::test_get_deps_info PASSED                    [ 64%]
test/test_show_versions.py::test_show_versions_with_proj PASSED          [ 64%]
test/test_sync.py::test_sha256sum PASSED                                 [ 64%]
test/test_sync.py::test_download_resource_file[True] PASSED              [ 65%]
test/test_sync.py::test_download_resource_file[False] PASSED             [ 65%]
test/test_sync.py::test_download_resource_file__nosha256 PASSED          [ 65%]
test/test_sync.py::test_download_resource_file__exception PASSED         [ 66%]
test/test_sync.py::test_download_resource_file__bad_sha256sum PASSED     [ 66%]
test/test_transform.py::test_transform PASSED                            [ 67%]
test/test_transform.py::test_skip_equivalent PASSED                      [ 67%]
test/test_transformer.py::test_tranform_wgs84_to_custom PASSED           [ 67%]
test/test_transformer.py::test_illegal_transformation FAILED             [ 68%]
test/test_transformer.py::test_lambert_conformal_transform PASSED        [ 68%]
test/test_transformer.py::test_equivalent_crs PASSED                     [ 68%]
test/test_transformer.py::test_equivalent_crs__disabled PASSED           [ 69%]
test/test_transformer.py::test_equivalent_crs__different PASSED          [ 69%]
test/test_transformer.py::test_equivalent_proj PASSED                    [ 69%]
test/test_transformer.py::test_equivalent_proj__disabled PASSED          [ 70%]
test/test_transformer.py::test_equivalent_proj__different PASSED         [ 70%]
test/test_transformer.py::test_equivalent_pipeline PASSED                [ 71%]
test/test_transformer.py::test_4d_transform PASSED                       [ 71%]
test/test_transformer.py::test_2d_with_time_transform PASSED             [ 71%]
test/test_transformer.py::test_4d_transform_crs_obs1 PASSED              [ 72%]
test/test_transformer.py::test_4d_transform_orginal_crs_obs1 PASSED      [ 72%]
test/test_transformer.py::test_4d_transform_crs_obs2 PASSED              [ 72%]
test/test_transformer.py::test_2d_with_time_transform_crs_obs2 PASSED    [ 73%]
test/test_transformer.py::test_2d_with_time_transform_original_crs_obs2 PASSED [ 73%]
test/test_transformer.py::test_4d_itransform PASSED                      [ 73%]
test/test_transformer.py::test_3d_time_itransform PASSED                 [ 74%]
test/test_transformer.py::test_4d_itransform_orginal_crs_obs1 PASSED     [ 74%]
test/test_transformer.py::test_2d_with_time_itransform_original_crs_obs2 PASSED [ 75%]
test/test_transformer.py::test_itransform_time_3rd_invalid PASSED        [ 75%]
test/test_transformer.py::test_transform_no_error PASSED                 [ 75%]
test/test_transformer.py::test_itransform_no_error PASSED                [ 76%]
test/test_transformer.py::test_transform_no_exception PASSED             [ 76%]
test/test_transformer.py::test_transform__out_of_bounds PASSED           [ 76%]
test/test_transformer.py::test_transform_radians PASSED                  [ 77%]
test/test_transformer.py::test_itransform_radians PASSED                 [ 77%]
test/test_transformer.py::test_4d_transform__inverse PASSED              [ 77%]
test/test_transformer.py::test_transform_direction PASSED                [ 78%]
test/test_transformer.py::test_always_xy__transformer PASSED             [ 78%]
test/test_transformer.py::test_always_xy__transform PASSED               [ 78%]
test/test_transformer.py::test_always_xy__itransform PASSED              [ 79%]
test/test_transformer.py::test_transform_direction__string PASSED        [ 79%]
test/test_transformer.py::test_transform_direction__string_lowercase PASSED [ 80%]
test/test_transformer.py::test_transform_direction__invalid PASSED       [ 80%]
test/test_transformer.py::test_from_pipeline__non_transform_input PASSED [ 80%]
test/test_transformer.py::test_non_supported_initialization PASSED       [ 81%]
test/test_transformer.py::test_pj_info_properties PASSED                 [ 81%]
test/test_transformer.py::test_to_wkt PASSED                             [ 81%]
test/test_transformer.py::test_str PASSED                                [ 82%]
test/test_transformer.py::test_repr[7789-8401-<Transformation Transformer: helmert>\nDescription: ITRF2014 to ETRF2014 (2)\nArea of Use:\n- name: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro; Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino; Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle of Man; Vatican City State.\n- bounds: (-16.1, 32.88, 40.18, 84.17)] FAILED [ 82%]
test/test_transformer.py::test_repr[4326-3857-<Conversion Transformer: pipeline>\nDescription: Popular Visualisation Pseudo-Mercator\nArea of Use:\n- name: World.\n- bounds: (-180.0, -90.0, 180.0, 90.0)] PASSED [ 82%]
test/test_transformer.py::test_to_json_dict PASSED                       [ 83%]
test/test_transformer.py::test_to_json PASSED                            [ 83%]
test/test_transformer.py::test_to_json__pretty PASSED                    [ 84%]
test/test_transformer.py::test_to_json__pretty__indenation PASSED        [ 84%]
test/test_transformer.py::test_transformer__operations PASSED            [ 84%]
test/test_transformer.py::test_transformer__operations_missing PASSED    [ 85%]
test/test_transformer.py::test_transformer__operations__scope_remarks PASSED [ 85%]
test/test_transformer.py::test_transformer_group PASSED                  [ 85%]
test/test_transformer.py::test_transformer__area_of_interest__invalid PASSED [ 86%]
test/test_transformer.py::test_transformer_group__area_of_interest__invalid PASSED [ 86%]
test/test_transformer.py::test_transformer_equals PASSED                 [ 86%]
test/test_transformer.py::test_transformer_not_equals[comparison0] PASSED [ 87%]
test/test_transformer.py::test_transformer_not_equals[22] PASSED         [ 87%]
test/test_transformer.py::test_pipeline_transform[+proj=pipeline +ellps=GRS80 +step +proj=cart] PASSED [ 88%]
test/test_transformer.py::test_pipeline_transform[+proj=pipeline +step +proj=unitconvert +xy_in=deg +xy_out=rad +ellps=GRS80 +step +proj=cart] PASSED [ 88%]
test/test_transformer.py::test_pipeline_itransform[+proj=pipeline +ellps=GRS80 +step +proj=cart] PASSED [ 88%]
test/test_transformer.py::test_pipeline_itransform[+proj=pipeline +step +proj=unitconvert +xy_in=deg +xy_out=rad +ellps=GRS80 +step +proj=cart] PASSED [ 89%]
test/test_transformer.py::test_network__disable[transformer0] PASSED     [ 89%]
test/test_transformer.py::test_network__disable[transformer1] PASSED     [ 89%]
test/test_transformer.py::test_network__disable[transformer2] PASSED     [ 90%]
test/test_transformer.py::test_network__enable[transformer0] PASSED      [ 90%]
test/test_transformer.py::test_network__enable[transformer1] PASSED      [ 90%]
test/test_transformer.py::test_network__enable[transformer2] PASSED      [ 91%]
test/test_transformer.py::test_network__default[transformer0] PASSED     [ 91%]
test/test_transformer.py::test_network__default[transformer1] PASSED     [ 92%]
test/test_transformer.py::test_network__default[transformer2] PASSED     [ 92%]
test/test_transformer.py::test_transformer_group__network_enabled PASSED [ 92%]
test/test_transformer.py::test_transform_pipeline_radians PASSED         [ 93%]
test/test_transformer.py::test_itransform_pipeline_radians PASSED        [ 93%]
test/test_transformer.py::test_transform_honours_input_types[10-y0-z0] PASSED [ 93%]
test/test_transformer.py::test_transform_honours_input_types[10-y1-z1] PASSED [ 94%]
test/test_transformer.py::test_transform_honours_input_types[x2-10-z2] PASSED [ 94%]
test/test_transformer.py::test_transform_honours_input_types[x3-y3-10] PASSED [ 94%]
test/test_transformer.py::test_transform_honours_input_types[x4-10-z4] PASSED [ 95%]
test/test_transformer.py::test_transform_honours_input_types[x5-y5-10] PASSED [ 95%]
test/test_utils.py::test__copytobuffer_return_scalar[in_data0] PASSED    [ 96%]
test/test_utils.py::test__copytobuffer_return_scalar[1] PASSED           [ 96%]
test/test_utils.py::test__copytobuffer_return_scalar__invalid PASSED     [ 96%]
test/test_utils.py::test__copytobuffer[in_data0-True-False-False] PASSED [ 97%]
test/test_utils.py::test__copytobuffer[in_data1-True-False-False] PASSED [ 97%]
test/test_utils.py::test__copytobuffer[1-True-False-False] PASSED        [ 97%]
test/test_utils.py::test__copytobuffer[in_data3-False-True-False] PASSED [ 98%]
test/test_utils.py::test__copytobuffer[in_data4-False-False-True] PASSED [ 98%]
test/test_utils.py::test__copytobuffer__numpy_array[in_arr0] PASSED      [ 98%]
test/test_utils.py::test__copytobuffer__numpy_array[in_arr1] PASSED      [ 99%]
test/test_utils.py::test__copytobuffer__numpy_array[in_arr2] PASSED      [ 99%]
test/test_utils.py::test__copytobuffer__invalid PASSED                   [100%]

=================================== FAILURES ===================================
___________________________ test_proj_debug_logging ____________________________

capsys = <_pytest.capture.CaptureFixture object at 0x7faa62ca5a00>

    def test_proj_debug_logging(capsys):
        with proj_logging_env():
            with pytest.warns(FutureWarning):
                transformer = Transformer.from_proj("+init=epsg:4326", "+init=epsg:27700")
            transformer.transform(100000, 100000)
            captured = capsys.readouterr()
            if os.environ.get("PROJ_DEBUG") == "3":
                assert "PROJ_TRACE" in captured.err
                assert "PROJ_DEBUG" in captured.err
            elif os.environ.get("PROJ_DEBUG") == "2":
                assert "PROJ_TRACE" not in captured.err
                assert "PROJ_DEBUG" in captured.err
            else:
>               assert captured.err == ""
E               AssertionError: assert 'MainThread:D...id latitude\n' == ''
E                 + MainThread:DEBUG:PROJ_ERROR: tmerc: Invalid latitude
E                 + MainThread:DEBUG:PROJ_ERROR: push: Invalid latitude

test/test_datadir.py:240: AssertionError
------------------------------ Captured log call -------------------------------
DEBUG    pyproj:transformer.py:488 PROJ_ERROR: tmerc: Invalid latitude
DEBUG    pyproj:transformer.py:488 PROJ_ERROR: push: Invalid latitude
_________________________ test_illegal_transformation __________________________

    def test_illegal_transformation():
        # issue 202
        with pytest.warns(FutureWarning):
            p1 = pyproj.Proj(init="epsg:4326")
            p2 = pyproj.Proj(init="epsg:3857")
        with pytest.warns(DeprecationWarning):
            xx, yy = pyproj.transform(
                p1, p2, (-180, -180, 180, 180, -180), (-90, 90, 90, -90, -90)
            )
>       assert np.all(np.isinf(xx))
E       AssertionError: assert False
E        +  where False = <function all at 0x7faa664ece50>(array([False, False, False, False, False]))
E        +    where <function all at 0x7faa664ece50> = np.all
E        +    and   array([False, False, False, False, False]) = <ufunc 'isinf'>((-20037508.342789244, -20037508.342789244, 20037508.342789244, 20037508.342789244, -20037508.342789244))
E        +      where <ufunc 'isinf'> = np.isinf

test/test_transformer.py:56: AssertionError
_ test_repr[7789-8401-<Transformation Transformer: helmert>\nDescription: ITRF2014 to ETRF2014 (2)\nArea of Use:\n- name: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro; Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino; Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle of Man; Vatican City State.\n- bounds: (-16.1, 32.88, 40.18, 84.17)] _

from_crs = 7789, to_crs = 8401
expected_repr = '<Transformation Transformer: helmert>\nDescription: ITRF2014 to ETRF2014 (2)\nArea of Use:\n- name: Europe - onshore ...ed Kingdom (UK) including Channel Islands and Isle of Man; Vatican City State.\n- bounds: (-16.1, 32.88, 40.18, 84.17)'

    @pytest.mark.parametrize(
        "from_crs, to_crs, expected_repr",
        [
            (
                7789,
                8401,
                (
                    "<Transformation Transformer: helmert>\n"
                    "Description: ITRF2014 to ETRF2014 (2)\n"
                    "Area of Use:\n"
                    "- name: Europe - onshore and offshore: Albania; Andorra; Austria; "
                    "Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; "
                    "Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; "
                    "Greece; Hungary; Ireland; Italy; Kosovo; Latvia; Liechtenstein; "
                    "Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro; "
                    "Netherlands; North Macedonia; "
                    "Norway including Svalbard and Jan Mayen; "
                    "Poland; Portugal; Romania; San Marino; Serbia; Slovakia; Slovenia; "
                    "Spain; Sweden; Switzerland; "
                    "United Kingdom (UK) including Channel Islands and Isle of Man; "
                    "Vatican City State.\n"
                    "- bounds: (-16.1, 32.88, 40.18, 84.17)"
                ),
            ),
            (
                4326,
                3857,
                (
                    "<Conversion Transformer: pipeline>\n"
                    "Description: Popular Visualisation Pseudo-Mercator\n"
                    "Area of Use:\n"
                    "- name: World.\n"
                    "- bounds: (-180.0, -90.0, 180.0, 90.0)"
                ),
            ),
        ],
    )
    def test_repr(from_crs, to_crs, expected_repr):
>       assert repr(Transformer.from_crs(from_crs, to_crs)) == expected_repr
E       AssertionError: assert '<Transformat...722623821813)' == '<Transformat...40.18, 84.17)'
E           <Transformation Transformer: helmert>
E           Description: ITRF2014 to ETRF2014 (2)
E           Area of Use:
E           - name: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro; Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino; Serbia; Slovakia; Slovenia; Spain; Sweden; S...
E         
E         ...Full output truncated (3 lines hidden), use '-vv' to show

test/test_transformer.py:498: AssertionError
=============================== warnings summary ===============================
.pybuild/cpython3_3.9_pyproj/build/test/test_datadir.py::test_get_data_dir__from_user[str]
.pybuild/cpython3_3.9_pyproj/build/test/test_datadir.py::test_get_data_dir__from_user[Path]
.pybuild/cpython3_3.9_pyproj/build/test/test_datadir.py::test_append_data_dir__internal[str]
.pybuild/cpython3_3.9_pyproj/build/test/test_datadir.py::test_append_data_dir__internal[Path]
  /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build/pyproj/datadir.py:37: UserWarning: pyproj unable to set database path.
    _global_context_set_data_dir()

-- Docs: https://docs.pytest.org/en/stable/warnings.html
=========================== short test summary info ============================
FAILED test/test_datadir.py::test_proj_debug_logging - AssertionError: assert...
FAILED test/test_transformer.py::test_illegal_transformation - AssertionError...
FAILED test/test_transformer.py::test_repr[7789-8401-<Transformation Transformer: helmert>\nDescription: ITRF2014 to ETRF2014 (2)\nArea of Use:\n- name: Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro; Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino; Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle of Man; Vatican City State.\n- bounds: (-16.1, 32.88, 40.18, 84.17)]
===== 3 failed, 273 passed, 58 deselected, 4 warnings in 122.49s (0:02:02) =====
E: pybuild pybuild:353: test: plugin distutils failed with: exit code=1: cd /build/python-pyproj-3.0.0/.pybuild/cpython3_3.9_pyproj/build; python3.9 -m pytest -v -m "not network and not cli and not grid"
dh_auto_test: error: pybuild --test -i python{version} -p 3.9 returned exit code 13
make[1]: *** [debian/rules:30: override_dh_auto_test] Error 25
make[1]: Leaving directory '/build/python-pyproj-3.0.0'
make: *** [debian/rules:21: build] Error 2
dpkg-buildpackage: error: debian/rules build 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.16657


More information about the Pkg-grass-devel mailing list