Your message dated Mon, 04 Jun 2012 22:38:11 +0000
with message-id <[email protected]>
and subject line Bug#645203: fixed in pyfits 1:3.0.7-1
has caused the Debian Bug report #645203,
regarding python-pyfits: please update to pyfits 3.0.3
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 [email protected]
immediately.)
--
645203: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=645203
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: python-pyfits
Version: 1:2.4.0-1
Severity: wishlist
pyfits 3.0.3 has been released on oct 5.
It contains many fixes and new features, especially basic python3 support.
But it is also partly backward incompatible, see the release notes.
Changelog since 2.4.0:
3.0.3 (2011-10-05)
Fixed several small bugs involving corner cases in record-valued keyword cards
(#70)
In some cases HDU creation failed if the first keyword value in the header was
not a string value (#89)
Fixed a crash when trying to compute the HDU checksum when the data array
contains an odd number of bytes (#91)
Disabled an unnecessary warning that was displayed on opening compressed HDUs
with disable_image_compression = True (#92)
Fixed a typo in code for handling HCOMPRESS compressed images.
3.0.2 (2011-09-23)
The BinTableHDU.tcreate method and by extension the pyfits.tcreate function
don't get tripped up by blank lines anymore (#14)
The presence, value, and position of the EXTEND keyword in Primary HDUs is
verified when reading/writing a FITS file (#32)
Improved documentation (in warning messages as well as in the handbook) that
PyFITS uses zero-based indexing (as one would expect for C/Python code, but
contrary to the PyFITS standard which was written with FORTRAN in mind) (#68)
Fixed a bug where updating a header card comment could cause the value to be
lost if it had not already been read from the card image string.
Fixed a related bug where changes made directly to Card object in a header
(i.e. assigning directly to card.value or card.comment) would not propagate
when flushing changes to the file (#69) [Note: This and the bug above it were
originally reported as being fixed in version 3.0.1, but the fix was never
included in the release.]
Improved file handling, particularly in Python 3 which had a few small file
I/O-related bugs (#76)
Fixed a bug where updating a FITS file would sometimes cause it to lose its
original file permissions (#79)
Fixed the handling of TDIMn keywords; 3.0 added support for them, but got the
axis order backards (they were treated as though they were row-major) (#82)
Fixed a crash when a FITS file containing scaled data is opened and immediately
written to a new file without explicitly viewing the data first (#84)
Fixed a bug where creating a table with columns named either 'names' or
'formats' resulted in an infinite recursion (#86)
3.0.1 (2011-09-12)
Fixed a bug where updating a header card comment could cause the value to be
lost if it had not already been read from the card image string.
Changed _TableBaseHDU.data so that if the data contain an empty table a
FITS_rec object with zero rows is returned rather than None.
The .key attribute of RecordValuedKeywordCards now returns the full keyword
+field-specifier value, instead of just the plain keyword (#46)
Fixed a related bug where changes made directly to Card object in a header
(i.e. assigning directly to card.value or card.comment) would not propagate
when flushing changes to the file (#69)
Fixed a bug where writing a table with zero rows could fail in some cases (#72)
Miscellanous small bug fixes that were causing some tests to fail, particularly
on Python 3 (#74, #75)
Fixed a bug where creating a table column from an array in non-native byte
order would not preserve the byte order, thus interpreting the column array
using the wrong byte order (#77)
3.0.0 (2011-08-23)
Contains major changes, bumping the version to 3.0
Large amounts of refactoring and reorganization of the code; tried to preserve
public API backwards-compatibility with older versions (private API has many
changes and is not guaranteed to be backwards-compatible). There are a few
small public API changes to be aware of:
The Header.ascardlist() method is deprecated--use the .ascard attribute
instead.
Card instances have a new .cardimage attribute that should be used rather than
..ascardimage(), which may become deprecated.
The Card.fromstring() method is now a classmethod. It returns a new Card
instance rather than modifying an existing instance.
The req_cards() method on HDU instances has changed: The pos argument is not
longer a string. It is either an integer value (meaning the card's position
must match that value) or it can be a function that takes the card's position
as it's argument, and returns True if the position is valid. Likewise, the test
argument no longer takes a string, but instead a function that validates the
card's value and returns True or False.
The get_coldefs() method of table HDUs is deprecated. Use the .columns
attribute instead.
The ColDefs.data attribute is deprecated--use ColDefs.columns instead (though
in general you shouldn't mess with it directly--it might become internal at
some point).
FITS_record objects take start and end as arguments instead of startColumn and
endColumn (these are rarely created manually, so it's unlikely that this change
will affect anyone).
BinTableHDU.tcreate() is now a classmethod, and returns a new BinTableHDU
instance.
Use ExtensionHDU and NonstandardExtHDU for making new extension HDU classes.
They are now public interfaces, wheres previously they were private and
prefixed with underscores.
Possibly others--please report if you find any changes that cause difficulties.
Calls to deprecated functions will display a Deprecation warning. However, in
Python 2.7 and up Deprecation warnings are ignored by default, so run Python
with the -Wd option to see if you're using any deprecated functions. If we get
close to actually removing any functions, we might make the Deprecation
warnings display by default.
Added basic Python 3 support
Added support for multi-dimensional columns in tables as specified by the TDIMn
keywords (#47)
Fixed a major memory leak that occurred when creating new tables with the
new_table() function (#49) be padded with zero-bytes) vs ASCII tables (where
strings are padded with spaces) (#15)
Fixed a bug in which the case of Random Access Group parameters names was not
preserved when writing (#41)
Added support for binary table fields with zero width (#42)
Added support for wider integer types in ASCII tables; although this is non-
standard, some GEIS images require it (#45)
Fixed a bug that caused the index_of() method of HDULists to crash when the
HDUList object is created from scratch (#48)
Fixed the behavior of string padding in binary tables (where strings should be
padded with nulls instead of spaces)
Fixed a rare issue that caused excessive memory usage when computing checksums
using a non-standard block size (see r818)
Add support for forced uint data in image sections (#53)
Fixed an issue where variable-length array columns were not extended when
creating a new table with more rows than the original (#54)
Fixed tuple and list-based indexing of FITS_rec objects (#55)
Fixed an issue where BZERO and BSCALE keywords were appended to headers in the
wrong location (#56)
FITS_record objects (table rows) have full slicing support, including stepping,
etc. (#59)
Fixed a bug where updating multiple files simultaneously (such as when running
parallel processes) could lead to a race condition with mktemp() (#61)
Fixed a bug where compressed image headers were not in the order expected by
the funpack utility (#62)
-- System Information:
Debian Release: wheezy/sid
APT prefers oneiric-updates
APT policy: (500, 'oneiric-updates'), (500, 'oneiric-security'), (500,
'oneiric-proposed'), (500, 'oneiric'), (100, 'oneiric-backports')
Architecture: amd64 (x86_64)
Kernel: Linux 3.0.0-12-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages python-pyfits depends on:
ii libc6 2.13-20ubuntu5 Embedded GNU C Library: Shared lib
ii python 2.7.2-7ubuntu2 interactive high-level object-orie
ii python-numpy 1:1.5.1-2ubuntu2 Numerical Python adds a fast array
ii python-support 1.0.13ubuntu1 automated rebuilding support for P
ii python2.7 2.7.2-5ubuntu1 An interactive high-level object-o
python-pyfits recommends no packages.
python-pyfits suggests no packages.
-- no debconf information
--- End Message ---
--- Begin Message ---
Source: pyfits
Source-Version: 1:3.0.7-1
We believe that the bug you reported is fixed in the latest version of
pyfits, which is due to be installed in the Debian FTP archive:
pyfits_3.0.7-1.debian.tar.gz
to main/p/pyfits/pyfits_3.0.7-1.debian.tar.gz
pyfits_3.0.7-1.dsc
to main/p/pyfits/pyfits_3.0.7-1.dsc
pyfits_3.0.7.orig.tar.gz
to main/p/pyfits/pyfits_3.0.7.orig.tar.gz
python-pyfits_3.0.7-1_amd64.deb
to main/p/pyfits/python-pyfits_3.0.7-1_amd64.deb
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 [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Aurelien Jarno <[email protected]> (supplier of updated pyfits 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 [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Tue, 05 Jun 2012 00:14:12 +0200
Source: pyfits
Binary: python-pyfits
Architecture: source amd64
Version: 1:3.0.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team
<[email protected]>
Changed-By: Aurelien Jarno <[email protected]>
Description:
python-pyfits - Python module for reading, writing, and manipulating FITS files
Closes: 645203
Changes:
pyfits (1:3.0.7-1) unstable; urgency=low
.
* New upstream version (Closes: #645203).
* Bump Standards-Version to 3.9.3 (no changes).
* Correctly pass CFLAGS, CPPFLAGS and LDFLAGS to build with hardening
support.
* Add build-arch and build-indep targets.
Checksums-Sha1:
0c6207e41d5f0edc79773e053a7f80655361e5f5 1434 pyfits_3.0.7-1.dsc
ae7285a4b5d9167ab77860a487ee13e084f8dd35 677588 pyfits_3.0.7.orig.tar.gz
d7bcd69aa1416b11ff367551c865ec4bbe423c3d 25862 pyfits_3.0.7-1.debian.tar.gz
f919f9d1bcc56d09f4ac4d64fd37d05729ed1b38 455282 python-pyfits_3.0.7-1_amd64.deb
Checksums-Sha256:
bb5d4807bd51a37c2c39625c70aac2801dc69fd114ecd965896263b425cd8ae4 1434
pyfits_3.0.7-1.dsc
831687e556091bbb005f1358729046c984cb896f1e11fb01df7469ace377cdce 677588
pyfits_3.0.7.orig.tar.gz
7572242a99c3adce57efdda7769f317fc56e87bbc055e941b032f56f63362bd7 25862
pyfits_3.0.7-1.debian.tar.gz
64d70514a5e2a1fb95cfdb67278a17f4db1a8ac7de4913ad9a0882a3cb3abe2b 455282
python-pyfits_3.0.7-1_amd64.deb
Files:
9b5d780359997ae7f7092b2b6061d4e5 1434 python optional pyfits_3.0.7-1.dsc
6aaa1b02ac349120cb5fd03cf569dffd 677588 python optional
pyfits_3.0.7.orig.tar.gz
3cbf09aa1f46e249c6595891a94e356e 25862 python optional
pyfits_3.0.7-1.debian.tar.gz
2750e013c815b8a94e92fe69f94151db 455282 python optional
python-pyfits_3.0.7-1_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iD8DBQFPzTN2w3ao2vG823MRAhqmAJ4jgcfHb1l3DluanI2Z84H5jUbE6wCfZ5RZ
B+HeK7ueZCZJlBEN8Xfx+UQ=
=R7gV
-----END PGP SIGNATURE-----
--- End Message ---
_______________________________________________
Python-modules-team mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team