Your message dated Tue, 03 Jan 2023 16:34:33 +0000
with message-id <e1pckff-00fpja...@fasolo.debian.org>
and subject line Bug#1026012: fixed in astropy-healpix 0.6-2
has caused the Debian Bug report #1026012,
regarding astropy-healpix: FTBFS because of failing test suite
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1026012: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1026012
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: astropy-healpix
Version: 0.6-1
Severity: serious
Tags: ftbfs

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512


Dear maintainers,

the new python-hypothesis 6.60 apparently exposed a bug in your package,
causing it to FTBFS and fail the autopkgtest.

Relevant excerpt from the build log:


=================================== FAILURES ===================================
_________________________________ test_vec2pix _________________________________

    @given(nside_pow=integers(0, 29), nest=booleans(),
>          x=floats(-1, 1, allow_nan=False, allow_infinity=False).filter(lambda 
> x: abs(x) > 1e-10),
           y=floats(-1, 1, allow_nan=False, allow_infinity=False).filter(lambda 
y: abs(y) > 1e-10),
           z=floats(-1, 1, allow_nan=False, allow_infinity=False).filter(lambda 
z: abs(z) > 1e-10))

astropy_healpix/tests/test_healpy.py:116: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

nside_pow = 2, x = 1.0, y = 1.0, z = 0.5, nest = False

    @given(nside_pow=integers(0, 29), nest=booleans(),
           x=floats(-1, 1, allow_nan=False, allow_infinity=False).filter(lambda 
x: abs(x) > 1e-10),
           y=floats(-1, 1, allow_nan=False, allow_infinity=False).filter(lambda 
y: abs(y) > 1e-10),
           z=floats(-1, 1, allow_nan=False, allow_infinity=False).filter(lambda 
z: abs(z) > 1e-10))
    @settings(max_examples=2000, derandomize=True, deadline=None)
    def test_vec2pix(nside_pow, x, y, z, nest):
        nside = 2 ** nside_pow
        ipix1 = hp_compat.vec2pix(nside, x, y, z, nest=nest)
        ipix2 = hp.vec2pix(nside, x, y, z, nest=nest)
>       assert ipix1 == ipix2
E       assert 42 == 58
E       Falsifying example: test_vec2pix(
E           nside_pow=2, nest=False, x=1.0, y=1.0, z=0.5,
E       )

astropy_healpix/tests/test_healpy.py:124: AssertionError
_________________________________ test_vec2ang _________________________________

    @given(vectors=arrays(float, (3,), elements=floats(-1, 
1)).filter(not_at_origin),
>          lonlat=booleans(), ndim=integers(0, 4))

astropy_healpix/tests/test_healpy.py:210: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

vectors = array([  1.00000000e+00,  -2.22044605e-16,   1.00000000e+00])
lonlat = False, ndim = 0

    @given(vectors=arrays(float, (3,), elements=floats(-1, 
1)).filter(not_at_origin),
           lonlat=booleans(), ndim=integers(0, 4))
    @settings(max_examples=500, derandomize=True, deadline=None)
    def test_vec2ang(vectors, lonlat, ndim):
        vectors = np.broadcast_to(vectors, (2,) * ndim + (3,))
        theta1, phi1 = hp_compat.vec2ang(vectors, lonlat=lonlat)
        theta2, phi2 = hp.vec2ang(vectors, lonlat=lonlat)
        # Healpy sometimes returns NaNs for phi (somewhat incorrectly)
        phi2 = np.nan_to_num(phi2)
        assert_allclose(theta1, theta1, atol=1e-10)
>       assert_allclose(phi1, phi2, atol=1e-10)
E       AssertionError: 
E       Not equal to tolerance rtol=1e-07, atol=1e-10
E       
E       Mismatched elements: 1 / 1 (100%)
E       Max absolute difference: 6.283185307179586
E       Max relative difference: 1.0
E        x: array([ 0.])
E        y: array([ 6.283185])
E       Falsifying example: test_vec2ang(
E           vectors=array([  1.00000000e+00,  -2.22044605e-16,   
1.00000000e+00]),
E           lonlat=False,
E           ndim=0,
E       )

astropy_healpix/tests/test_healpy.py:219: AssertionError
=============================== warnings summary ===============================
astropy_healpix/conftest.py:50
  
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_astropy-healpix/build/astropy_healpix/conftest.py:50:
 AstropyDeprecationWarning: The enable_deprecations_as_exceptions function is 
deprecated and may be removed in a future version.
          Use https://docs.pytest.org/en/stable/warnings.html instead.
    enable_deprecations_as_exceptions()

.pybuild/cpython3_3.10_astropy-healpix/build/astropy_healpix/tests/test_core.py::test_interpolate_bilinear_invalid
  
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_astropy-healpix/build/astropy_healpix/core.py:605:
 RuntimeWarning: invalid value encountered in bilinear_interpolation_weights
    result = _core.bilinear_interpolation_weights(lon, lat, nside)

.pybuild/cpython3_3.10_astropy-healpix/build/astropy_healpix/tests/test_core.py::test_interpolate_bilinear_invalid
  
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_astropy-healpix/build/astropy_healpix/core.py:570:
 RuntimeWarning: invalid value encountered in ring_to_nested
    return _core.ring_to_nested(ring_index, nside)

- -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED astropy_healpix/tests/test_healpy.py::test_vec2pix - assert 42 == 58
FAILED astropy_healpix/tests/test_healpy.py::test_vec2ang - AssertionError: 
================== 2 failed, 115 passed, 3 warnings in 47.44s ==================


-----BEGIN PGP SIGNATURE-----

iQGzBAEBCgAdFiEEJvtDgpxjkjCIVtam+C8H+466LVkFAmOYNxgACgkQ+C8H+466
LVkNCwwAnQYr+mQEDFPhKBpa0ahy0qaOP305ajiBlZ6Z/ZC3g44Qj3aQOHGBEE6J
+k62S/snTN/lruybHMdLSn+vlp1rWZxtS+rxnMEaaNjxqYge3C7VA57FBlO80r3U
RQXtOmiTFnkxRPHl8ba/lW3bYlh4TLNsgJ8A8lxapXC3zANR7TVNQPJQBNhkDMHG
tAO1Be4BYiRoS5in6mP1qFF/L0m1ZxOayGxnp825/mFAOvXBOjmi0jkeecgFwefk
HwTP5D0KH5mI7EmnyeDT8XP2tZX5ZPH7V3PbNnrrKn7zyN+gXCCoNeR/C/sbtpeN
TnAhbxx8yBBHZ96c0fXT8csJB2f/LCMhU3y3MFjm/F/HNCISNejXeAmZO9BXPAtL
vS7LM39/MVES3uozh5M/WRd5q5Ba45sHvj0SBeIvhWx4v52Q/pu8xL2tbwn0jAzZ
yDg0QNpaeHojHFEMJ145DVbf3UCZ3eKQndPowVGYHxkQ6q7ZW0IuDFaCYi3M7CRb
bJ1EICar
=O5xc
-----END PGP SIGNATURE-----

--- End Message ---
--- Begin Message ---
Source: astropy-healpix
Source-Version: 0.6-2
Done: Ole Streicher <oleb...@debian.org>

We believe that the bug you reported is fixed in the latest version of
astropy-healpix, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1026...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ole Streicher <oleb...@debian.org> (supplier of updated astropy-healpix package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Tue, 03 Jan 2023 16:48:59 +0100
Source: astropy-healpix
Architecture: source
Version: 0.6-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Astronomy Maintainers 
<debian-astro-maintain...@lists.alioth.debian.org>
Changed-By: Ole Streicher <oleb...@debian.org>
Closes: 1026012
Changes:
 astropy-healpix (0.6-2) unstable; urgency=medium
 .
   [Debian Janitor]
   * Remove constraints unnecessary since buster:
     + Build-Depends: Drop versioned constraint on python3-healpy and
       python3-setuptools.
   * Use secure URI in Homepage field.
   * Set upstream metadata fields: Bug-Submit, Repository, Repository-Browse.
   * Remove obsolete field Name from debian/upstream/metadata (already present 
in
     machine-readable debian/copyright).
 .
   [Ole Streicher]
   * Team upload.
   * Temporarily disable tests that fail due to limited FP precision
     (Closes: #1026012)
   * Update standards version to 4.6.2, no changes needed.
Checksums-Sha1:
 033f64eb4845c932c751764b99e5892a47643a08 2295 astropy-healpix_0.6-2.dsc
 51704eac1551f4c7b7fb81a8190a99bede3b663d 6072 
astropy-healpix_0.6-2.debian.tar.xz
Checksums-Sha256:
 641b50f171e929b6c0a38c95cc504d5b30bc2146cf1dcfc6ed42b9199832c6eb 2295 
astropy-healpix_0.6-2.dsc
 f581eef844913562505762b03b9c8656acd6e8b1b60b932a03d1b885f9b58c59 6072 
astropy-healpix_0.6-2.debian.tar.xz
Files:
 d8431c56c9f6f9b996f373a4a6d9b7ea 2295 python optional astropy-healpix_0.6-2.dsc
 048f2d4e7589a089f474425cd07dc542 6072 python optional 
astropy-healpix_0.6-2.debian.tar.xz

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEuvxshffLFD/utvsVcRWv0HcQ3PcFAmO0UJEACgkQcRWv0HcQ
3Pc+ag/+IamiuWqxexAXwV+NKaEEvh4GDN8uTpA4Qf/Ws4Nv3tNDpHB4VAeDoKcy
39xK+cNex2M/x0Eu29VEvm43gesKx35fAnA+VkfqEsIAO2kkvKpYhQmkFm98H5AY
L2Diq5tmlRk7sPJlGwSpXDQOlwjUTZd9WpdPspKNwOIS8Ft5lLKXlI9T08pL1xcu
FvwSK/RR/SrHMN0yBDXQo/ZF4jvujYF4qNmB9urqR5wLVe1CcDZqaC5xWTnWfYAr
pS9tsBqI6/Uz+DRnS6y1IWZEFT+Z2IGOw1uBLI8QTQ6oZ4humTYH8P9AqAwy0/LV
tnwsaa2ViBRPq0geOsK6fSAUpGRXtCOnqmKv55RU9xvr4cErPijozuSSEfonFtv9
oIgOrp7qtu1SlRlRFsMv4c1Tl3YniDvJYVwG/ZhDYUHns7EbkM++XpeRaOiaCY0b
ayfLx23FxVtGwl1X5K25wEZkX6FMmrC5JL2gNhLhNLudL0zqAEmM2SGlggZUW4es
v3RJ4lqcJlcHTt2JAtZ0XgFHt5o+nIx9ui/BdCv7A4paVevb7eJi3eIDh2bR5kmz
Y6QNCxT8/mXq/crc+jQj3gI1yk9Y58LNIbAPGd/IgxRAmyJjIoxeJKk/IOE/lVQ7
nz67evaLqvYYDoBbmrrUpCeNVf5aERHn+RCGCnZYDBNQ4NMoQQk=
=V1e2
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to