Your message dated Fri, 22 Nov 2019 10:04:38 +0000
with message-id <e1iy5nq-0008sn...@fasolo.debian.org>
and subject line Bug#943925: fixed in python-feather-format 0.3.1+dfsg1-3
has caused the Debian Bug report #943925,
regarding python-feather-format: FTBFS with pandas 0.25
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.)


-- 
943925: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=943925
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python3-feather-format
Version: 0.3.1+dfsg1-2
Control: block 931557 by -1

With python3-pandas 0.25, the build fails with these test failures:


======================================================================
ERROR: test_boolean_object_nulls (feather.tests.test_reader.TestFeatherReader)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/python-feather-format-0.3.1+dfsg1/feather/tests/test_reader.py", line 248, in test_boolean_object_nulls
    self._check_pandas_roundtrip(df, null_counts=[1 * repeats])
File "/build/python-feather-format-0.3.1+dfsg1/feather/tests/test_reader.py", line 70, in _check_pandas_roundtrip
    feather.write_dataframe(df, path)
File "/build/python-feather-format-0.3.1+dfsg1/feather/api.py", line 43, in write_dataframe
    inferred_type = pd.lib.infer_dtype(col)
File "/usr/lib/python3/dist-packages/pandas/__init__.py", line 208, in __getattr__ raise AttributeError("module 'pandas' has no attribute '{}'".format(name))
AttributeError: module 'pandas' has no attribute 'lib'

======================================================================
ERROR: test_empty_strings (feather.tests.test_reader.TestFeatherReader)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/python-feather-format-0.3.1+dfsg1/feather/tests/test_reader.py", line 271, in test_empty_strings
    self._check_pandas_roundtrip(df)
File "/build/python-feather-format-0.3.1+dfsg1/feather/tests/test_reader.py", line 70, in _check_pandas_roundtrip
    feather.write_dataframe(df, path)
File "/build/python-feather-format-0.3.1+dfsg1/feather/api.py", line 43, in write_dataframe
    inferred_type = pd.lib.infer_dtype(col)
File "/usr/lib/python3/dist-packages/pandas/__init__.py", line 208, in __getattr__ raise AttributeError("module 'pandas' has no attribute '{}'".format(name))
AttributeError: module 'pandas' has no attribute 'lib'

======================================================================
ERROR: test_nan_as_null (feather.tests.test_reader.TestFeatherReader)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/python-feather-format-0.3.1+dfsg1/feather/tests/test_reader.py", line 277, in test_nan_as_null
    self._check_pandas_roundtrip(df)
File "/build/python-feather-format-0.3.1+dfsg1/feather/tests/test_reader.py", line 70, in _check_pandas_roundtrip
    feather.write_dataframe(df, path)
File "/build/python-feather-format-0.3.1+dfsg1/feather/api.py", line 43, in write_dataframe
    inferred_type = pd.lib.infer_dtype(col)
File "/usr/lib/python3/dist-packages/pandas/__init__.py", line 208, in __getattr__ raise AttributeError("module 'pandas' has no attribute '{}'".format(name))
AttributeError: module 'pandas' has no attribute 'lib'

======================================================================
ERROR: test_strings (feather.tests.test_reader.TestFeatherReader)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/python-feather-format-0.3.1+dfsg1/feather/tests/test_reader.py", line 256, in test_strings
    self._assert_error_on_write(df, ValueError)
File "/build/python-feather-format-0.3.1+dfsg1/feather/tests/test_reader.py", line 95, in _assert_error_on_write
    self.assertRaises(exc, f)
  File "/usr/lib/python3.7/unittest/case.py", line 756, in assertRaises
    return context.handle('assertRaises', args, kwargs)
  File "/usr/lib/python3.7/unittest/case.py", line 178, in handle
    callable_obj(*args, **kwargs)
File "/build/python-feather-format-0.3.1+dfsg1/feather/tests/test_reader.py", line 94, in f
    feather.write_dataframe(df, path)
File "/build/python-feather-format-0.3.1+dfsg1/feather/api.py", line 43, in write_dataframe
    inferred_type = pd.lib.infer_dtype(col)
File "/usr/lib/python3/dist-packages/pandas/__init__.py", line 208, in __getattr__ raise AttributeError("module 'pandas' has no attribute '{}'".format(name))
AttributeError: module 'pandas' has no attribute 'lib'

======================================================================
ERROR: test_unsupported (feather.tests.test_reader.TestFeatherReader)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/python-feather-format-0.3.1+dfsg1/feather/tests/test_reader.py", line 364, in test_unsupported
    self._assert_error_on_write(df, ValueError)
File "/build/python-feather-format-0.3.1+dfsg1/feather/tests/test_reader.py", line 95, in _assert_error_on_write
    self.assertRaises(exc, f)
  File "/usr/lib/python3.7/unittest/case.py", line 756, in assertRaises
    return context.handle('assertRaises', args, kwargs)
  File "/usr/lib/python3.7/unittest/case.py", line 178, in handle
    callable_obj(*args, **kwargs)
File "/build/python-feather-format-0.3.1+dfsg1/feather/tests/test_reader.py", line 94, in f
    feather.write_dataframe(df, path)
File "/build/python-feather-format-0.3.1+dfsg1/feather/api.py", line 61, in write_dataframe
    writer.write_array(name, col)
  File "feather/ext.pyx", line 99, in feather.ext.FeatherWriter.write_array
    self.write_primitive(name, col, mask)
File "feather/ext.pyx", line 122, in feather.ext.FeatherWriter.write_primitive
    self.write_ndarray(col_values, mask, &values)
File "feather/ext.pyx", line 149, in feather.ext.FeatherWriter.write_ndarray
    check_status(pandas_to_primitive(values, out))
  File "feather/ext.pyx", line 57, in feather.ext.check_status
    raise FeatherError(frombytes(c_message))
feather.ext.FeatherError: Invalid: unhandled python type, index 0

----------------------------------------------------------------------
Ran 25 tests in 0.188s

FAILED (errors=5)

--- End Message ---
--- Begin Message ---
Source: python-feather-format
Source-Version: 0.3.1+dfsg1-3

We believe that the bug you reported is fixed in the latest version of
python-feather-format, 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 943...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Graham Inggs <gin...@debian.org> (supplier of updated python-feather-format 
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: Fri, 22 Nov 2019 09:27:00 +0000
Source: python-feather-format
Architecture: source
Version: 0.3.1+dfsg1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
<python-modules-t...@lists.alioth.debian.org>
Changed-By: Graham Inggs <gin...@debian.org>
Closes: 943925
Changes:
 python-feather-format (0.3.1+dfsg1-3) unstable; urgency=medium
 .
   * Team upload
 .
   [ Ondřej Nový ]
   * Bump Standards-Version to 4.4.1.
 .
   [ Rebecca N. Palmer ]
   * Be compatible with pandas 0.25 (Closes: #943925)
Checksums-Sha1:
 8ec109d5d825c3662119d12c666ae6ade4de9388 2299 
python-feather-format_0.3.1+dfsg1-3.dsc
 893e621b90abe4b8d722c010e4453c5c7cc18f96 3952 
python-feather-format_0.3.1+dfsg1-3.debian.tar.xz
Checksums-Sha256:
 ba47c548c72b60db94db98e47d8ec4b4ca2789ce032dd31c001242c9154948ef 2299 
python-feather-format_0.3.1+dfsg1-3.dsc
 b916f1065680d7ba8d538fd526fa02e2dc67344835f84c5d6f6103dffbcd8985 3952 
python-feather-format_0.3.1+dfsg1-3.debian.tar.xz
Files:
 e90f174c4b861b33e0176cf81cc5ba4d 2299 python optional 
python-feather-format_0.3.1+dfsg1-3.dsc
 f6c762a5c3e6e77e13e1460025c3ccf6 3952 python optional 
python-feather-format_0.3.1+dfsg1-3.debian.tar.xz

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

iQIzBAEBCgAdFiEEJeP/LX9Gnb59DU5Qr8/sjmac4cIFAl3XrMIACgkQr8/sjmac
4cJAyxAAmNGvcPHa8y/id/+G1o76yBbXr75Ymb9FhzTmmcerF5Xbd7ldMbb0tUVg
fkkaaUppriOfFEar8VUW5qabEwLyH9JcxBxV26AQYI0WkbBLvaRhp87R4fR6yncV
x5NOtxUiVAk5Q72enHGd2Y4DzZQxeBrtZ8MdPvJkn5z7wr/CLWShEHv6ysTCVxGi
BZzgT0qZWO1f6hypiqwqTSdREeQ/M0Thso24P/3D6g+iz9PRbDpJR9tsrsckQEe7
NEL/FGoCC+iAf5nH3O2kHz5h6U0U+ye4+645UuZU6Uk31CLrzQA+CwYkx03bXCia
UEEmQ0TyZBYb/JeMWhNEglcmd4VLqeS7V3mnyZZ9XTBZJG+a/Y9YGlEFJKHvnwxc
eX7RWkKQLauJk/7tLmtey/JAE2sUNmiPCrywkiDSY6OqqtYjfOFMrsCWahgJflRg
SrNyoBrfwLjHXV/zGE9U4Zv2qZdapOokRP1xOyLF1xqV2ajgpuYO+nG1losYYlGU
3Ca2WML25yw30+07id+Jwdv+Ac8Pa8lH9efwQ+0UzTFgEdnZ/7dMZjibc0/kLfUZ
/Afebmm4f7QHOwhGCuCmhVKUKv7+O+/AN3J+Vp8x6AgA4P+NZfawStjGiGvvpf6g
CbF7ZUqKlVgAo6EJXHP7YTJtfAoWqetVrkcwX153CC4NmUvQ8xU=
=9klv
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to