Package: astropy-healpix / 0.4-5

Metadata

Package Version Patches format
astropy-healpix 0.4-5 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 Use astropy_helpers provided by the system.patch | (download)

setup.cfg | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 use astropy_helpers provided by the system


0002 Increase tolerance in flaky test.patch | (download)

astropy_healpix/tests/test_healpy.py | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 increase tolerance in flaky test

The tolerance here seems to be a bit too small, and sometimes creates
an error.

Closes: #902713

0003 Replace deprecated np.asscalar with ndarray.item.patch | (download)

astropy_healpix/core.py | 4 2 + 2 - 0 !
astropy_healpix/healpy.py | 4 2 + 2 - 0 !
2 files changed, 4 insertions(+), 4 deletions(-)

 replace deprecated np.asscalar with ndarray.item

`np.asscalar` was deprecated in Numpy 1.16. Since the unit tests
treat deprecation warnings as errors, we have to fix this in order
for the unit tests to pass with Numpy >= 1.16.

0004 Specify 64 bit integer literals portably.patch | (download)

cextern/astrometry.net/healpix.c | 14 7 + 7 - 0 !
1 file changed, 7 insertions(+), 7 deletions(-)

 specify 64-bit integer literals portably

On a 32-bit architecture, the expression `4L` is not a 64-bit
literal. On the other hand, `(int64_t)4` is.

This fixes unit test errors on 32-bit architectures (armhf).

0005 Fix implicit declaration warning for vasprintf.patch | (download)

cextern/astrometry.net/bl.c | 1 1 + 0 - 0 !
1 file changed, 1 insertion(+)

 fix implicit declaration warning for vasprintf