Package: pandas / 0.19.2-5.1

Metadata

Package Version Patches format
pandas 0.19.2-5.1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
changeset_233b28f02ec0c88a955e6a26cc43c0a88929536c.diff | (download)

pandas/io/tests/test_excel.py | 6 6 + 0 - 0 !
1 file changed, 6 insertions(+)

 bf: skip two tests which failed when xlwt was n/a


changeset_848ce49a9f006eadfd169d2fc545a5d15b616f7c.diff | (download)

pandas/tests/indexes/common.py | 6 6 + 0 - 0 !
1 file changed, 6 insertions(+)

 bf: skip equivalence test for itemsize and nbytes if "values" ndarray view of type object


changeset_ae6a0a51cf41223394b7ef1038c210045d486cc8.diff | (download)

pandas/tools/tests/test_tile.py | 5 4 + 1 - 0 !
1 file changed, 4 insertions(+), 1 deletion(-)

 bf: define expected series of correct for arch (eg i386) int


changeset_0699c89882133a41c250abdac02796fec84512e8.diff | (download)

pandas/io/tests/parser/common.py | 14 7 + 7 - 0 !
pandas/tests/series/test_datetime_values.py | 2 1 + 1 - 0 !
pandas/tseries/tests/test_timeseries.py | 2 1 + 1 - 0 !
3 files changed, 9 insertions(+), 9 deletions(-)

 bf(tst): use = (native) instead of < (little endian) for target data types (#14832)


deb_nonversioneer_version | (download)

pandas/__init__.py | 5 1 + 4 - 0 !
1 file changed, 1 insertion(+), 4 deletions(-)

---
deb_doc_donotoverride_PYTHONPATH | (download)

doc/make.py | 3 2 + 1 - 0 !
1 file changed, 2 insertions(+), 1 deletion(-)

---
deb_skip_stata_on_bigendians | (download)

pandas/io/tests/test_stata.py | 4 4 + 0 - 0 !
1 file changed, 4 insertions(+)

---
deb_disable_googleanalytics | (download)

pandas/io/tests/data/macau.html | 19 4 + 15 - 0 !
pandas/io/tests/data/spam.html | 44 4 + 40 - 0 !
2 files changed, 8 insertions(+), 55 deletions(-)

---
deb_skip_sequencelike_on_armel | (download)

pandas/tests/frame/test_constructors.py | 3 3 + 0 - 0 !
1 file changed, 3 insertions(+)

---
deb_skip_test_pytables_failure | (download)

pandas/io/tests/test_pytables.py | 10 7 + 3 - 0 !
1 file changed, 7 insertions(+), 3 deletions(-)

 swallow the error from pytables

happens on wheezy and ubuntu 12.04, only in amd64, only if the entire test
up_buggy_overflows | (download)

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

 avoid overflows for now
  Due to a bug in current numpy beta (or numexpr) tests would fail
  if operation on int leads to overflows (e.g. of pow operation).

  as a workaround for now -- avoid big ints

858260.patch | (download)

pandas/tests/test_multilevel.py | 12 6 + 6 - 0 !
1 file changed, 6 insertions(+), 6 deletions(-)

 use tiinfo correctly
 The underlying issue (but not strictly a bug as the documentation 
 specifically says not to do that - 
 http://sources.debian.net/src/python-tz/2016.7-0.2/pytz/tzinfo.py/#L247 
 ) is that passing a pytz tzinfo to the datetime constructor uses its 
 first listed offset, not its correct offset for that date:
 .
 >>> datetime.datetime(2017,4,1,tzinfo=pytz.timezone('Europe/London'))
 datetime.datetime(2017, 4, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/London' 
 GMT0:00:00 STD>)
 >>> pytz.timezone('Europe/London').localize(datetime.datetime(2017,4,1))
 datetime.datetime(2017, 4, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/London' 
 BST+1:00:00 DST>)