You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/astropy/files/astropy-1.1.1-fix-wcs.patch

16 lines
618 B

Author: Kacper Kowalik <xarthisius.kk@gmail.com>
Description: Copy keys to a list, since orignal map is modified
Url: https://github.com/astropy/astropy/issues/4477
Bug: https://github.com/astropy/astropy/issues/4460
--- a/astropy/wcs/wcs.py
+++ b/astropy/wcs/wcs.py
@@ -988,7 +988,7 @@
"""
# Never pass SIP coefficients to wcslib
# CTYPE must be passed with -SIP to wcslib
- for key in (m.group() for m in map(SIP_KW.match, header.keys())
+ for key in (m.group() for m in map(SIP_KW.match, list(header))
if m is not None):
del header[key]