[pandas] annotated tag debian/0.13.0+git464-g15a8ff7-1 created (now 3cd24ee)

Andreas Tille tille at debian.org
Wed Dec 28 15:19:07 UTC 2016


This is an automated email from the git hooks/post-receive script.

tille pushed a change to annotated tag debian/0.13.0+git464-g15a8ff7-1
in repository pandas.

        at  3cd24ee   (tag)
   tagging  f1edeabd80f33f8cd26a73f4f34bfef859f382f2 (commit)
  replaces  debian/0.13.0-2
 tagged by  Yaroslav Halchenko
        on  Wed Jan 29 22:21:26 2014 -0500

- Log -----------------------------------------------------------------
pandas Debian release 0.13.0+git464-g15a8ff7-1
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEABECAAYFAlLpxTYACgkQjRFFY3XAJMhZSgCg0qgOITV+gYD/jMNDSykZESfY
06sAoKAOADjVjdZ99AXij8GZ649aBOTy
=qvCj
-----END PGP SIGNATURE-----

Alex Rothberg (2):
      ENH Datetime64Formatter and Timedelta64Formatter now limit precision.
      BUG: Fixed ``to_datetime`` for array with both Tz-aware datetimes and

Alok Singhal (1):
      BUG: use the "join" string in Appender decorator

Andrew Burrows (2):
      Fix bug where use of .ix[tuple(...)]=x fails to correctly check out of bounds index for columns. This is a regression as it used to work in pandas 0.12.0. The code incorrectly checks the column index against the len() of the dataframe to see if it is in bounds not against the number of columns. Have added 2 tests with non-square dataframes to test that the fix works.
      BUG when assigning to .ix[tuple(...)

Andy Hayden (9):
      Merge pull request #5977 from TomAugspurger/interpolate-datetime
      ENH: add show_dimensions display config
      ENH: html repr respects show_dimensions
      DOC: add show_dimensions to faq
      ENH get_dummies str method
      PERF speed up str.get_dummies
      Merge pull request #6132 from hayd/str_get_dummies
      DOC add str.get_dummies to api
      FIX old exception syntax

Bjorn Arneson (1):
      Escape special characters in to_latex()

Brad Buran (2):
      ENH: Add unique and nunique to GroupBy whitelist
      ENH: Updated tests for series GroupBy whitelist

Caleb Epstein (1):
      Add -NaN and -nan to default NA values

Chapman Siu (3):
      Update comparison_with_r.rst
      Update comparison_with_r.rst
      Update comparison_with_r.rst

Chase Albert (1):
      Change "methdo" to "method" in asfreq's docstring.

Clark Fitzgerald (2):
      Added test for wb.get_countries
      changed get_countries URL

DSM (2):
      PERF: add np.max and np.min to _cython_table (GH5927)
      BUG: ensure plt is imported before it's used in hist_frame

Dan Birken (3):
      PERF: Speed up pd.to_datetime() by optionally inferring dt format #5490
      PERF: Add infer_datetime_format to read_csv() #5490
      DOC/BUG: Fix documentation for `infer_datetime_format` #6073

Daniel Waeber (1):
      BUG: fixed append for dataframe with multi-column

David Wolever (1):
      Add is_reduction argument to DataFrame.apply

Doran Deluz (2):
      BUG/TST: dt+BDay(n) wrong if n>5, n%5==0 and dt not on offset (GH5890)
      DOC: updated release.rst (GH5890)

Douglas McNeil (3):
      TST: fix test that repr returns str
      TST: fix test_eval typos
      BUG: fix broken BigqueryError reference

Douglas Rudd (1):
      Modified test_pow function in computation/tests/test_eval.py to use assert_allclose rather than assert_all_equal to avoid machine precision failures in TestEvalNumexprPandas/Numpy.  Fixes issue #5981.

Elliot S (1):
      Update rolling skew & kurtosis to handle cases where they aren't defined

Felix Lawrence (1):
      DOC: Clarified documentation for MultiIndexes

George Kuan (1):
      BUG/TST: Fixes isnull behavior on NaT in array. Closes #5443

Jacob Schaer (2):
      Added 'Experimental' to Docstrings
      Updated docs to reflect a pagination bug that was fixed. Closes: issue #6096

Jan Wagner (1):
      ENH: ExcelWriter() accepts date and datetime formats

Jeff Tratner (3):
      CLN: Make io/data urls easier to monkey-patch
      BUG: Fix DatetimeIndex.insert() with non-datetimes.
      Replace network decorator with with_connectivity_check

John McNamara (1):
      TST: Add xlsm to Excel parsing tests.

Joris Van den Bossche (21):
      DOC: add way to document DatetimeIndex field attributes
      Merge pull request #5838 from danielballan/extract-docstring
      DOC: fix headers to avoid warnings
      DOC: remove usage of code-block in docstrings (#3430)
      Merge pull request #5903 from jorisvandenbossche/docs-code-snippets
      DOC: add a couple plt.close('all') to avoid warning
      DOC: fix warning + some stylistic corrections
      Merge pull request #5980 from jorisvandenbossche/doc-plot-warning
      DOC: correction of docstring dtypes/ftypes
      DOC: moved numpydoc sphinx extension to subdirectory
      DOC: update numpydoc to current master (commit 223df02530)
      Merge pull request #5964 from felixlawrence/improve-multiindex-docs
      DOC: add guidelines for building the docs
      DOC: add section contributing to pandas
      Merge pull request #6003 from jorisvandenbossche/numpydoc
      Merge pull request #6078 from danbirken/infer-dt-doc-fix
      Merge pull request #5996 from jorisvandenbossche/doc-guide
      DOC: supress warnings with okwarning in whatsnew
      Merge pull request #6086 from jorisvandenbossche/doc-warnings
      Merge pull request #6055 from mwaskom/multiindex_from_iterables
      DOC: clarify that ExcelFile is not deprecated but only moved (GH5435)

Julia Evans (1):
      Add pandas cookbook to tutorials (for #5837)

Kieran O'Mahony (2):
      TST: json test file, make encoding explicit
      PERF: fix JSON performance regression from 0.12 (GH5765)

Michael Schatzow (2):
      bug fix for issue 5797
      Fix bug 5846

Naveen Michaud-Agrawal (2):
      Fix prefix argument for read_csv/read_table
      BUG: add tests for read_table/read_csv `prefix` argument

Patrick O'Keeffe (1):
      DOC: fix parser docstring for 'quotechar', 'quoting' params; closes #5408

Phillip Cloud (12):
      DISP: show column dtype in DataFrame.info() output
      TST: add test for lack of Series.info
      Merge pull request #6074 from dsm054/fix-test_eval
      TST: add a test for columns with nested strings
      Merge pull request #6107 from cpcloud/query-test-for-stringified-elements
      TST: add tests for old version of numexpr
      BLD/CI: add numexpr==1.4.2 to build wheels
      CLN/TST: DRY skip_if_no_ne
      Merge pull request #6109 from cpcloud/ne-version
      BUG: allow lex string comparisons
      BUG: allow single element bool queries
      Merge pull request #6163 from cpcloud/query-single-element-booleans-6148

Roman Pekar (1):
      API: added 'p' code into _parse_code_table (GH5361)

Skipper Seabold (4):
      ENH: Improve error message for PeriodIndex to infer_freq. Closes #5841.
      ENH: Refactor code to add is_view method for Series.
      DOC: Add is_view to release notes
      DOC: Add two examples to to_datetime

Spencer Lyon (1):
      BUG: Yahoo finance changed ichart url. Fixed here

Tom Augspurger (2):
      BUG: Allow DatetimeIndex for scipy interpoalte
      Only recast if datetime; use astype instead of view

TomAugspurger (2):
      BUG/API: autocorrelation_plot should accept kwargs
      BUG: Panel.to_frame() with MultiIndex major axis

Yaroslav Halchenko (5):
      -a for xvfb-run for autoserver number
      Merge commit 'v0.13.0-464-g15a8ff7' into debian
      fresh changelog
      debian/patches - removed all cherry-picked patches (should have been upstreamed)
      recythonized using cython 0.20

acorbe (1):
      BUG: scatter_plot ranges are unaligned among subframes GH5497

akittredge (1):
      docstring grammar.

bmu (1):
      changed the term "Vern" to "Versions" to be clearer

chapman siu (2):
      DOC: updated compare w r
      DOC: r match function

danielballan (2):
      DOC: Add example to extract docstring, and explain change to match more clearly
      DOC: minor fix in extract docstring

david (1):
      DOC: tutorials

davidshinn (1):
      ENH/TST: Raise error if invalid value passed to if_exists argument

immerrr (1):
      BUG: don't lose dtypes when concatenating empty array-likes

jreback (183):
      DOC: 0.14 whatsnew template
      DOC: update release notes for 0.14
      PERF: fix infer_dtype to properly infer a Series (GH5801)
      Merge pull request #5802 from jreback/td_perf
      PERF: perf issue with dropna on frame
      Merge pull request #5815 from jreback/dropna_perf
      BUG: dropna dtype comp issue related (GH5815)
      Merge pull request #5820 from jreback/perf_dropna_fix
      Merge pull request #5814 from jorisvandenbossche/doc-dtindex-attribute
      Merge pull request #5806 from MichaelWS/master
      DOC: change doc refs to 0.13.1
      Merge pull request #5826 from danielballan/extract-docstring
      COMPAT: allow string concats to datetimeindex only (int/float are invalid)
      Merge pull request #5833 from jreback/release
      DOC: added tutorials.rst template
      DOC: whatsnew entries for ecosystem and tutorials
      BUG: Bug in selection with missing values via .ix from a duplicate indexed DataFrame failing (GH5835)
      Merge pull request #5847 from jseabold/fix-5841
      Merge pull request #5849 from jreback/dup_selection
      BUG: fix issue of boolean comparison on empty DataFrames (GH5808)
      Merge pull request #5810 from jreback/bool_ops
      BUG: Series.sort will raise a ValueError (rather than a TypeError) on sorting an
      COMPAT: add different numexpr versions for testing
      Merge pull request #5860 from jreback/tables_fix
      Merge pull request #5859 from jreback/series_view
      Merge branch 'master' of https://github.com/commonlisp/pandas into commonlisp-master
      DOC: release notes (GH5443)
      BUG: bug in `o_datetime when passed a np.nan or integer datelike and a format string (GH5863)
      Merge pull request #5864 from jreback/to_datetime
      Merge pull request #5866 from chappers/r-compare
      Merge pull request #5842 from jvns/patch-1
      DOC: show the Panel.reindex API change in v0.13.0.txt (GH5867)
      BUG: Bug in groupby dtype conversion with datetimelike (GH5869)
      Merge pull request #5870 from jreback/groupby_ts
      BUG: Regresssion in handling of empty Series as indexers to Series  (GH5877)
      Merge pull request #5880 from jreback/series_empty
      Merge pull request #5887 from jseabold/to-datetime-example
      BUG: Bug in internal caching, related to (GH5727)
      Merge pull request #5892 from jreback/mi_setitem
      TST: Testing bug in reading json/msgpack from a non-filepath on windows under py3 (GH5874)
      Merge pull request #5894 from jreback/json_file
      Merge pull request #5896 from ahlmss/AHLRAP-3152
      DOC: rolling apply additions to cookbook.rst
      BUG: Bug in fully reindexing a Panel (GH5905)
      Merge pull request #5906 from jreback/panel_reindex
      Merge pull request #5907 from unutbu/cookbook
      Merge pull request #5910 from andrewkittredge/master
      BUG: Bug in idxmin/max with object dtypes (GH5914)
      Merge pull request #5918 from jreback/index_float
      Merge pull request #5911 from dorandeluz/bday-addition
      BUG: bug in chained assignment with ix and another chained series (GH5928)
      Merge pull request #5930 from jreback/indexer
      BUG: Bug in creating an empty DataFrame, copying, then assigning (GH5932)
      Merge pull request #5935 from jreback/empty_frame_copy
      Merge pull request #5879 from unutbu/str-contains
      Merge branch 'master' of https://github.com/MichaelWS/pandas into MichaelWS-master
      API: Raise/Warn SettingWithCopyError (according to the option chained_assignment in more cases,
      Merge pull request #5939 from jreback/chained
      BUG: Bug in propogating metadata on resample (GH5862)
      Merge pull request #5942 from jreback/finalize
      API: add read_gbq to top-level api, closes (GH5843)
      ENH: enhance apply() on Panel for arbitrary functions (rather than just ufuncs) (GH1148)
      ENH: allow multiple axes to be passed to axis on a Panel to process slabs
      DOC: Panel.apply whatsnew docs
      Merge pull request #5941 from jreback/gbq
      Merge pull request #5850 from jreback/panel_apply
      Merge pull request #5701 from cancan101/dt_formatting
      BUG: pd.match not returning passed sentinel
      Merge pull request #5943 from jreback/match
      Merge pull request #5623 from TomAugspurger/autocorr_kwds
      Merge pull request #5417 from TomAugspurger/to-frame-multi
      Merge pull request #5875 from chappers/r-isin
      BUG: Bug in pd.read_msgpack with inferring a DateTimeIndex frequencey
      Merge pull request #5948 from jreback/msgpack_bug
      Merge pull request #5944 from unutbu/str-extract
      Merge pull request #5962 from cancan101/fix_nat_tz
      Merge pull request #5760 from yieldsfalsehood/master
      Merge pull request #5960 from dsm054/more_resample_fast_paths
      PERF: perf improvments in dtypes/ftypes methods (GH5968)
      Merge pull request #5970 from jreback/dtypes_perf
      PERF: perf improvments in indexing with object dtypes (GH5968)
      BUG: Bug in NaT comparison if a mixed datetime/np.datetime64 with NaT were passed (5968)
      Merge pull request #5973 from jreback/format_perf
      Merge pull request #5982 from drudd/master
      Merge pull request #5984 from jorisvandenbossche/doc-dtypes
      API: Panel.dtypes to use generic method; add tests for Panel4D for same
      Merge pull request #5983 from jreback/panel_dtypes
      DOC: add 0.13.1 whatsnew to the index
      Merge pull request #5742 from immerrr/dont-lose-dtype-concatenating-empty-arraylikes
      BUG: possible fsync error when filno is negative (GH5999)
      Merge pull request #6004 from jreback/pytables_fsync
      TST: pytables test changes to work in 3.1rc1
      Merge pull request #6005 from jreback/pytables_3.1
      ENH: improved inference of timedelta64[ns] and datetime64[ns] in the prescence NaT/None/NaN
      BUG: apply to a Series with a timedelta (GH5458)
      BUG: timedelta64 merge/join issues (GH5695)
      DOC: release note for timedelta changes
      Merge pull request #5995 from jreback/timedelta_fixes
      TST: remove test.py (accidently added)
      Merge pull request #5408 from patricktokeeffe/fix-parser-docstring
      BUG: Regression in Series with a multi-index via ix (GH6018)
      BUG/CLN: make xs a generic method
      Merge pull request #6022 from jreback/series_mi
      BUG: Bug in Series construction of mixed type with datelike and an integer (which should result in
      Merge pull request #6028 from jreback/series_infer
      Merge pull request #5374 from bjornarneson/patch-1
      PERF: vbenches for DataFrame.apply
      PERF: perf enhancements for DataFrame.apply (GH6013)
      TST: check appropriate tests for apply
      Merge pull request #6024 from jreback/apply_perf
      BUG: Possible segfault when chained indexing with an object array under numpy 1.7.1 (GH6026)
      Merge pull request #6031 from jreback/index_segfault
      BUG: less false positives with SettingWithCopy (GH6025)
      Merge pull request #6040 from dsm054/fix-test-that-repr-returns-str
      BUG: Bug in setting using fancy indexing a single element with a non-scalar (e.g. a list),
      Merge pull request #6044 from jreback/ix_list
      Merge pull request #6042 from jreback/setting_with_copy
      DOC: minor doc edits
      Merge pull request #6038 from Bklyn/master
      BUG: Regression in .get(None) from 0.12 (GH5652)
      Merge pull request #6053 from jreback/get
      TST/DOC: addtl tests and docs for (GH6056)
      Merge pull request #6058 from jreback/iloc_segfault
      BUG: suble iloc indexing bug with single block and multi-axis indexing
      DOC: pytables iterator update
      Merge pull request #5283 from unutbu/array-equivalent
      Merge pull request #6065 from jreback/iloc_bug
      Merge pull request #6021 from danbirken/infer-datetime-format
      Merge branch 'datetime-index-insert-non-datetimes' of https://github.com/jtratner/pandas into jtratner-datetime-index-insert-non-datetimes
      Merge pull request #6072 from unutbu/doc-equals
      DOC: minor doc changes
      Merge pull request #6084 from jacobschaer/master
      Merge pull request #6088 from unutbu/fix-equivalent
      Merge pull request #6094 from dsm054/reorder-hist_frame-import
      DOC: remove warnings in panel.apply docs (GH6087)
      TST: disable get_components_yahoo tests as unreliable
      TST: don't compare inferred index freq on some tests as it may not be preserved
      Merge pull request #6089 from jreback/apply_warn
      Merge pull request #6097 from jreback/hdf_fix
      BUG: not converting scalars properly to M8/m8 on assignment (GH6079)
      CLN: removed need for SNDArray ; simplied SeriesGroupber / SeriesBinGrouper
      TST: skip read_dta2 on non-little endian
      BUG: rework object inferernce with NaN as the first element in an array
      Merge pull request #6083 from jreback/sparc_fix3
      Merge pull request #6101 from Komnomnomnom/json-remove-bom
      COMPAT: provide compat tests and better error messages for multiple file opening
      Merge pull request #6104 from jreback/pytables_3.1
      API: Series.str wont' raise and now returns None (GH6106)
      Merge pull request #6108 from jreback/str
      Merge pull request #6117 from jmcnamara/tst_excel_read_xlsm
      BUG: Bug in assignment with duplicate columns in a frame where the locations
      Merge pull request #6122 from jreback/dups
      BUG: Bug in propogating _ref_locs during construction of a DataFrame with dups
      Merge pull request #6123 from jreback/dups_slice
      DOC: v0.13.1 doc updates
      BUG: bug in DataFrame.apply when using mixed datelike reductions (GH6125)
      Merge pull request #6126 from jreback/apply_issue
      BUG" Bug in DataFrame.append when appending a row with different columns (GH6129)
      Merge pull request #6130 from jreback/append_bug
      Merge pull request #6133 from jorisvandenbossche/doc-clarify-excel
      Merge pull request #6080 from dsm054/fix-gbq-bigqueryerror
      Merge pull request #6137 from Komnomnomnom/json-0.13-slowdown
      DOC: v0.13.1.txt updates
      BLD: use newer versions of numexpr with numpy 1.8
      Merge pull request #6141 from jreback/numexpr
      BUG: Bug in DataFrame construction with recarray and non-ns datetime dtype (GH6140)
      Merge pull request #6142 from jreback/from_records
      Merge pull request #6147 from bburan-galenea/bburan/groupby-series-unique
      BUG: fix loc setitem with a dataframe on rhs, multiple items, and a datetimelike (GH 6152)
      Merge pull request #6152 from jreback/loc
      PERF: perf regression index construction from seris (GH6150)
      Merge pull request #6153 from jreback/index_perf
      TST: rec arrays don't support datetimes in creation on certain platforms, related (GH6140)
      TST: dtype comparison issue on windows for (GH6152)
      Merge pull request #6156 from jreback/sparc_fix4
      Merge pull request #6157 from jacobschaer/master
      Merge pull request #6158 from cpcloud/eval-fix-str-lexico
      Merge pull request #6167 from wabu/append-multi-fix
      TST: sparc fixes in datetime weirdness
      BUG: Consistency with dtypes in setting an empty DataFrame (GH6171)
      Merge pull request #6172 from jreback/empty_frame
      Merge pull request #6164 from hayd/4304r
      DOC: minor doc corrections

lexual (1):
      Docs for error_bad_lines, and warn_bad_lines options to pd.read_*

mwaskom (1):
      ENH Add MultiIndex.from_product convenience function

unutbu (6):
      DOC: Add "How to reduce a sequence (e.g. of Series) using a binary operator"
      ENH: Add regex=True flag to str_contains
      ENH: Improve perf of str_extract
      API: Add equals method to NDFrames. (Implemented with `array_equivalent`, which is similar to `np.array_equal` except that it handles object arrays and treats NaNs in corresponding locations as equal.
      DOC: Explain the use of NDFrame.equals
      BUG: array_equivalent was not passing its own doctest. The examples showed lists being passed to array_equivalent. array_equivalent expects ndarrays only.

y-p (165):
      BLD: Handle git describe failure more cleanly in setup.py GH5495
      BLD: set ISRELEASED=False
      Merge pull request #5739 from y-p/PR_git_describe_mischief
      BLD: version strings should be updated only when tagging new release
      Merge pull request #5803 from y-p/PR_fix_version
      CLN: Use correct exception types in config.py machinery
      CLN: simplify code in config.py
      ENH: expose option_context as a top-level API GH5618
      Merge pull request #5752 from y-p/PR_expose_option_context
      BLD: ci/print_versions.py learned to output json
      Merge pull request #5738 from y-p/PR_json_pr_ver
      Merge pull request #5682 from cpcloud/display-column-dtypes
      DOC: update release notes on df.info() dtype display
      Merge pull request #5337 from lexual/read_csv_docs_add_error_bad_lines
      Merge pull request #5277 from bmu/doc-fix
      Merge pull request #5812 from spencerlyon2/yahooFinFix
      Merge pull request #5817 from jtratner/make-urls-globals
      Merge pull request #5733 from nmichaud/read_table_prefix_fix
      DOC: update release notes for GH5733
      DOC: add pandas-xlsxwriter-charts ipnb to cookbook
      DOC: add 'pandas ecosystem' section to docs
      Merge pull request #5829 from y-p/PR_ecosystem
      Merge pull request #5828 from y-p/PR_excel_plots_cookbook
      DOC: grammer
      DOC: tweaks
      DOC: tweak ecosystem section
      DOC: tweak ecosystem section
      DOC: tweak ecosystem section
      DOC: tweak ecosystem section
      BLD: fix cythonized msgpack extension in setup.py GH5831
      Merge pull request #5853 from jseabold/add-is-view-series
      DOC: release notes
      DOC: release notes
      Revert "DOC: release notes"
      Revert "DOC: release notes"
      Revert "Merge pull request #5853 from jseabold/add-is-view-series"
      BLD: enhancements to print_versions.py
      BLD: make util/print_versions.py standlone as well
      BLD/DOC: explain how to print_versions() sans repo in CONTRIBUTING.md
      DOC: tweaks to CONTRIBUTING.md
      BLD: fixup setup.py, initialize pipe variable to None
      Merge pull request #5868 from y-p/PR_setup_pipe
      BLD: python3 unicode issue in print_versions
      BLD: Send Travi-CI results to ScatterCI
      Merge pull request #5893 from y-p/PR_ScatterCI
      BLD: fix travis.yml
      Merge pull request #5844 from y-p/PR_msgpack_setup
      BLD: match version tags when using git-describe to gen version string
      Merge pull request #5916 from y-p/PR_setup_git_describe_match_tags
      BLD: remove local autosummary copy
      DOC: remove scikits.timeseries dep from faq.rst and docs in general
      DOC: update copyright string years
      BLD: conf.py fixes
      Merge pull request #5921 from y-p/PR_doc_fixes
      Revert "BLD: remove local autosummary copy" GH5921
      BLD: Explicitly request utf-8 encoding in docs conf.py (is default)
      DOC: suppress warning during doc building
      CLN: repr_html raises NotImplementedError rather then ValueError in qtconsole GH5922
      DOC: move _templates out of source/ files to avoid warning
      DOC: disable running monkey patch example through ipython_directive
      Merge pull request #5953 from y-p/PR_doc_fixes
      BLD: erase local ipython_directive
      BLD: pull in latest ipython_directive from ipython 0355d3d
      BLD: ipython_directive, add back okexcept
      BLD: ipython_directive, enforce tight layout for mpl plots
      BLD: ipython_directive, cython magic fix
      BLD: make io.rst utf8-safe GH5142 GH5926
      BLD: ipython_directive, decode ipython output as utf8+replace
      Merge pull request #5951 from y-p/PR_latest_ipython_rep_fixes
      BLD: travis ensures tarball can be installed without cython
      BLD: pip wheel support is stable, travis can use the provided version
      Merge pull request #5966 from y-p/PR_travis_cython_check
      ENH: revamp null count supression for large frames in df.info()
      Merge pull request #5974 from y-p/PR_info_max_info_rows
      ENH: make show_versions available in the top_level api
      Merge pull request #5976 from y-p/PR_show_versions_to_the_top
      TST: fix broken test test_info_wide
      VBENCH: rename parser.py to parser_vb.py
      BUG: fix broken df.info() test_info_duplicate_columns
      BUG: fix broken df.info() test_info_duplicate_columns
      Merge pull request #5979 from y-p/PR_VB_parser_rename
      DOC: in ReST, a sublabel defines it's parent. latex complains of dupe
      Merge pull request #5985 from y-p/PR_doc_latex_fix
      DOC: whitespace fixes for tutorials update GH5929
      Merge pull request #5989 from  adeodatus/master
      Merge pull request #5959 from gandalf013/master
      Merge pull request #5925 from y-p/PR_rebase_ipython_directive
      DOC: document read_csv fastpath for iso8601 datetime strings
      Merge pull request #5993 from y-p/PR_doc_iso8601_fast_path
      DOC: Document fast path in to_datetime GH4826
      DOC: typos
      Merge pull request #5998 from TomAugspurger/interpolate-datetime-fix
      TST: add regression test for interpolate #5977
      BLD: make scatter_ci after_script.sh standalone
      TST: add skip_scipy
      TST: add skip_pchip
      DOC: add sklearn-pandas to pandas ecosystem section
      Merge pull request #6001 from y-p/PR_doc_ecosystem
      DOC: release.rst mention IPython warnings in qtconsole fix and workaround GH5922
      CLN: remove util.counter, duplicates compat
      BLD: travis, Install apt-get deps first
      BLD: travis, future-proof pip args
      Merge pull request #6017 from y-p/PR_cln_counter
      DOC: make zipped HTML docs available GH1876
      Merge pull request #6020 from y-p/PR_GH1876
      DOC: update mailing list
      BLD: add zip_html command to docs make.py
      Merge pull request #5665 from acorbe/scatter_matrix_off_diagonal_aligned
      DOC: be more vague in enhancingperf.rst GH6013
      CLN: ipython expects None from _repr_html_ to signal no html repr GH5922
      Merge pull request #6045 from y-p/PR_ipython_repr_html
      BLD: add IPython and sphinx to show_versions #6059
      Merge pull request #6064 from y-p/PR_add_deps_show_versions
      DOC: update release notes
      CLN: add clarifying comment to ipython_directive.py
      BLD/DOC: add context info on exception during sphinx run
      Merge pull request #6075 from y-p/PR_ipython_directive_context
      BLD/DOC: report context on warnings and add :okwarning: to ipython_directive
      Merge pull request #6082 from y-p/PR_ipython_directive
      DOC/BLD: ipython_directive cleanups
      DOC/BLD: ipython_directive cleanups
      DOC: beef up tutorial section. GH5837
      Merge pull request #6095 from y-p/PR_tuts
      Merge pull request #6008 from clarkfitzg/master (reworked)
      Merge pull request #6041 from hayd/master (reworked)
      CLN: remove docstrings from a handful of tests for consistency and nose -v output
      BLD: travis, run nose with -v for more visibility
      Merge pull request #6110 from y-p/PR_test_cleanups
      BLD: enable Machine field in print_versions
      BLD: enable Machine field in print_versions
      BLD: travis, run nose with -v. again.
      TST: HTMLFormatter does not die on unicode frame GH6098
      BUG: HTMLFormatter does not die on unicode frame GH6098
      Merge pull request #6112 from y-p/PR_GH6098
      TST: get_options_data ValueError if given only one of month/year GH6105
      BUG: get_options_data should raise ValueError if given only one of month/year GH6105
      Merge pull request #6114 from y-p/PR_GH6105
      TST: add _skip_if_no_xlrd() to test GH5583
      Merge pull request #6115 from y-p/PR_GH5583_fix_skip
      Merge pull request #6111 from jtratner/swap-network-decorator
      BLD: travis reports job names to ScatterCI
      BLD: travis reports job names to ScatterCI
      Add Scatter-CI link to README.md
      CLN: fix ScatterCI links in README and rnotes
      CLN: convert test docstring to comment
      BLD/TST: catch more spurious errors in @network decorator
      Merge pull request #6151 from y-p/PR_network
      BLD/TST: one more skip_errno for @network
      BLD/TEST: @network, SkipTest on known errnos
      BLD: try harder to find errno in @network
      BLD/TST: @network, SkipTest on certain exception messages, when no errno set
      TST: set default socket timeout to 5 sec in pandas.io.tests SetUp()
      Merge pull request #6174 from y-p/PR_more_network
      CLN: use assertEqual over assert_ for better exception messages
      DOC: cleanup warnings in tutorials.rst
      DOC: tweaks to whatsnew
      DOC: typos
      BLD: travis reports uname
      DOC: cleanup warnings in tutorials.rst
      DOC: suppress warning in docs
      DOC: fixes
      BLD: more exception message skipping in @network
      DOC: add df.info() null count suppression to whatnew
      BLD: commit automated cron script for setting up linux/py2 doc build env
      Merge pull request #6180 from y-p/PR_cron_docs

-----------------------------------------------------------------------

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/pandas.git



More information about the debian-science-commits mailing list