[pandas] annotated tag v0.12.0rc1 created (now b6bcfb9)

Andreas Tille tille at debian.org
Wed Dec 28 15:20:13 UTC 2016


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

tille pushed a change to annotated tag v0.12.0rc1
in repository pandas.

        at  b6bcfb9   (tag)
   tagging  b96ab6bddd5f2e84bd88a0659c4d98154819cffc (commit)
  replaces  v0.11.0
 tagged by  Wes McKinney
        on  Mon Jul 8 22:12:59 2013 -0700

- Log -----------------------------------------------------------------
Version 0.12.0 Release Candidate 1

Andy Hayden (42):
      ENH add date to DatetimeIndex
      Merge pull request #3614 from hayd/add_date_to_datetimeindex
      Merge pull request #3813 from gliptak/patch-2
      TST regression tests for GH3836
      Merge pull request #3839 from hayd/GH_3836
      ENH use pyperclip for read and to_clipboard
      TST slicing regression test
      Merge pull request #3858 from hayd/TSTassign_subset
      FIX hash of NDFrame raises TypeError
      FIX PandasObjects unhashable
      DOC updated to reflect using pyperclip for clipboard
      Merge pull request #3848 from hayd/GH3837_use_paperclip
      Merge pull request #3845 from nipunreddevil/io-to-clipboard
      Merge pull request #3884 from hayd/df_unhashable
      CLN depreciate save&load in favour of to_pickle&read_pickle
      FIX not mention save/load being removed
      Merge pull request #3787 from hayd/read_pickle_and_to_pickle
      DOC add to_datetime to api.rst
      WIP some to_datetime docs additions
      WIP to_datetime docs more rewriting
      Merge pull request #3921 from jtratner/remove-unused-exceptions
      FIX final tweaks
      ENH add cython tutorial
      FIX add cython to toctree
      FIX remove todos
      Merge pull request #3859 from hayd/DOC_add_to_datetime
      Merge pull request #3965 from hayd/cython_doc
      FIX py3ing some print statements
      CLN remove py3 note on print >>s
      Merge pull request #3821 from hayd/FIX_some_prints
      Merge pull request #3986 from mtkni/index_shift_drops_name
      Merge pull request #3999 from mtkni/stack_dropna
      Merge pull request #4004 from ogiaquino/Fix_rename_for_MultiIndex_columns_DataFrame
      FIX groupby name without multiindex GH4014
      Merge pull request #4015 from hayd/GH4104_groupby_index_name
      Merge pull request #3998 from mtkni/series_clip_timestamp
      Merge pull request #4127 from tshauck/fix-io-typo
      ENH melt uses column name if available
      CLN test_reshape
      DOC add release note about melt columns.name default behaviour
      Merge pull request #4139 from jtratner/excel_fix
      Merge pull request #4144 from hayd/melt_name

Chang She (4):
      DOC: older version of bs4 for 64bit as well
      Merge pull request #3724 from changhiskhan/PR_bs4-doc
      DOC: add google-api-python-client copyright and license to LICENSES directory
      DOC: reference LICENSES directory from auth.py #3747

Christopher Whelan (1):
      ENH Add colormap= keyword to DataFrame plots

Dan Allan (2):
      BUG: Removing a nonexistent store raises a KeyError
      ENH: Add filter method to SeriesGroupBy, DataFrameGroupBy

Dan Birken (4):
      BUG: Make secondary_y work properly for bar plots GH3598
      Add release notes for #3598
      ENH: Add ``layout`` keyword to DataFrame.hist() for customizable format
      Add release notes for new ``layout`` keyword - GH4050

Dieter Vandenbussche (2):
      ENH: Bring Series.dot up to par with DataFrame.dot
      BUG: (GH3601) Reindex data if reordering time/period index

Dražen Lučanin (1):
      link to a numerical integration recipe

Gábor Lipták (14):
      Use google finance as datasource (test only, still pointing to yahoo finance)
      Remove unneeded import from test_google
      Implement _get_hist_google
      No current finance data from Google
      Corrected typo in data
      Change google finance tests to @network only
      Skip tests on network error
      Split tests into multiple
      Deprecated month/year, use expiry instead
      Added tests for Options
      @network now catches connectivity problems
      Remove superfluous parentheses
      Doc for pandas.io.data
      Examples for all datasources

Jeff Mellen (2):
      BUG: GH3493 Fix cannot append DataFrames with uint dtypes to HDFStore
      DOC: Adds GH3493 bugfix note

Jeff Tratner (2):
      CLN: Small fix to clean_pyc task
      BUG: Make ExcelFile.parse pass kwds to TextParser

Jeffrey Tratner (36):
      TST: Fix assert_almost_equal error message
      TST: Fix missing import in io/tests/test_json …
      TST: Fix error in assert_produces_warning.
      CLN: Add .gitattribtes to fix crlf issues.
      CLN: Change CRLF --> LF
      BLD: Add binary files to gitattributes too
      CLN: Remove unused Exceptions throughout
      TST: Add numexpr arithmetic tests.
      ENH: Allow evaluate to pass kwargs to numexpr
      BUG: Fix __truediv__ numexpr error
      BUG: Remove broken frame mod and floordiv str_rep
      TST: Make test_expressions cover more arithmetic operators
      BLD: Add useful shortcuts to Makefile
      BLD: Tweak to Makefile
      ENH/TST: Add assertRaisesRegexp to util/testing
      CLN: Change merge to raise ValueError on overlapping indices
      CLN: Change internal error from Exception to PandasError
      CLN: stats/common: replace bare exceptions
      CLN: cleaner window check in ols + add error message
      CLN: Cleanup stats/common and change exception type
      CLN: pandas/sparse: replace bare exceptions
      CLN: tools/tile: replace bare exceptions
      CLN: pandas/tseries: replace bare exceptions
      CLN: Use timezone natively supported by pytz
      CLN: Make aware vs. naive always a TypeError
      CLN: Clean up the _cached_range exceptions and checks
      TST: Change network decorator to auto-check for network errors
      TST: Remove explicit connectivity checks in test cases.
      ENH: Add test decorator 'with_connectivity_check'.
      DOC: Update docs with changes
      CLN: Refactor string methods and add PandasObject
      CLN: Make more core objects inherit PandasObject
      CLN: Have PyTables, stats, & Stata use StringMixin
      DOC: New class hierarchy + StringMixin
      CLN: Move _constructor checks to PandasObject base
      TST: Change test_html to use stored data.

Jonathan deWerd (2):
      Separated keyword sets for different subplot types of scatter_matrix.
      Updated RELEASE.rst to note modifications closing #3267

Juraj Niznan (1):
      ENH: DataFrame.corr(method=spearman) related minor improvements.

Karmel Allison (2):
      DOC: Adding parameters address issue sub-points 8 and 10 - 24 (issue #2916)
      DOC: Adding Panel docs to API, and shortening line length in panel.py

Kevin Stone (3):
      Fixed Unbound Variable `edge` access when BinGrouper is empty
      Added failing test case for union of two timezone-aware indexes with month end frequencies.
      Included timezone information when applying month-end offset to ensure timezone information is preserved on index unions.

Kieran O'Mahony (2):
      ENH: update bundled ujson to latest v1.33
      BUG: ujson fix for VC++

Kyle Meyer (1):
      BUG: adjust to_latex column format when no index

Mike Kelly (4):
      GH3969 Implement unit='D' in to_datetime
      Index.shift() drops index name
      BUG: (GH3997) Fix for dropna=False in stack
      BUG: Use Series.where rather than np.where in clip

PKEuS (7):
      ENH: Added StataReader and StataWriter (#1512)
      [ENH] Added support for reading Stata formats 104, 105 and 108
      Improvements to StataParser:
      Moved StataParser into new module pandas.io.stata
      Fixed several problems in StataParser with Travis and Python2.
      Added StataParser to release notes and updated io.rst
      FIX: Bug in stata parser causing failure when reading dataset with string data

Patrick O'Brien (3):
      Support for s3 file handling
      Update README and RELEASE for new S3 support
      Update docs noting handling of s3 locations.

Phillip Cloud (153):
      ENH: add ability to read html tables directly into DataFrames
      BUG: fix qt console repr
      BUG: fix typeerror caused by spurious call to len on frame multiindex
      ENH: raise useful error message on invalid concat arguments
      unicode of PeriodIndex returns valid Python code
      fix for 3.2 which does not accept unicode literal prefix
      BUG: fix panel.transpose arguments API bug
      DOC: add bs4/lxml install note to README.rst
      DOC: document non-preservation of dtypes across rows with iterrows
      DOC: add mention of idx* methods in max/min methods of Series/DataFrame
      DOC: add mention of argminmax in basics.rst
      ENH: raise on fillna passed a list or tuple
      ENH: add regex functionality to DataFrame.replace
      ENH: examples for release notes and fix up nested dict example and test
      ENH: add Series.str iterator
      ENH: read-html fixes
      CLN: pandas stata reader should clean up after itself
      TST: add html5lib to travis
      note bs4 install weirdness
      ENH: do not coerce dates
      DOC: html-doc example
      ENH: plot only numeric data
      ENH/API: remove raise_on_error in plotting functions
      API: deprecate DataFrame.interpolate
      BUG: allow DataFrame.from_records to accept empty recarrays
      BLD: switch MAJOR and MICRO
      ENH: allow to_html and to_latex to take a file name as their first argument
      DOC: document read_html and to_html
      DOC: fix reference to read_html
      API: deprecate unused DataFrame.replace arguments
      DOC: clean up io docs and fix up links
      ENH/API: implemenet __nonzero__ for NDFrame
      DOC: add release notes
      ENH: add new option syntax
      DOC/BLD: fix annoying sphinx bugs
      DOC/BLD: squash deprecation warnings
      DOC: squash even moar warnings
      DOC: fix read_html attribute reading example
      BUG/BLD: pytables version checking was incorrect
      BUG/TST: tests should be skipped if bs4 and the corresponding library is not installed
      TST: fix html5lib tests and update data to more recent version
      DOC: add release notes and whatsnew
      DOC: document the various pitfalls of reading html
      DOC: minor issue with the description of the names attribute of multiindexes
      API: disallow dates in reduction operations
      TST: let tox run more tests
      ENH: allow fallback when lxml fails to parse
      TST/BLD: uninstalling lxml in the wrong place
      TST: use a for loop and break
      CLN: raise in a for else suite since if we did not break then nothing succeeded
      TST/BUG: hack around the weird scoping of exception catching in python3
      DOC: document the pitfalls of different byte orders
      Merge pull request #3780 from cpcloud/doc-the-endian-stuff
      Merge pull request #3766 from cpcloud/read-html-lxml-failed-parse
      DOC: make compatible with numpy v1.6.1
      Merge pull request #3786 from cpcloud/read-html-lxml-failed-parse
      DOC: turn off the ipython cache
      DOC: add link to tips data set in rplot docs
      DOC: replace totbill with total_bill
      DOC: make tips.csv consistent
      Merge pull request #3812 from gliptak/patch-1
      DOC: filter the correct warning for unique(key, column)
      DOC/BUG: fix overwriting of 'df' variable in doc build
      DOC: give deprecation warning about future timeseries broadcasting behavior
      Merge pull request #3815 from cpcloud/doc-build-fix
      CLN: remove relative imports
      Merge pull request #3827 from cpcloud/remove-relative-imports
      DOC: speedup io.rst doc build
      BLD: remove after_script since it does not exist anymore
      ENH/CLN: add figsize kwargs to hist method
      Merge pull request #3868 from cpcloud/remove-after-script
      Merge pull request #3842 from cpcloud/hist-figsize-3834
      FIX: change initObjToJSON return type
      BUG: allow itertuples to work with duplicate columns
      DOC: add release notes and bug fix notes
      Merge pull request #3879 from cpcloud/itertuples-bug-3873
      ENH: do not convert mixed-integer type indexes to datetimeindex
      DOC/TST: add test and release notes
      Merge pull request #3878 from cpcloud/index-join-date-casting-fix-3877
      BUG: fix unicode -> str cast in tslib
      Merge pull request #3900 from cpcloud/tslib-fix
      BUG/CLN: remove infer_types
      BUG: fix bug with replace when a compiled regex was passed but regex=False
      TST: add tests for new com functions
      DOC: add release notes, whatsnew and consolidate replace API changes
      FIX/ENH: attempt soft conversion of object series before raising a TypeError when plotting
      DOC: add release notes/whatsnew
      CLN: move PerformanceWarning to io.common and clean up
      ENH/CLN: use @jtratner's decorator to check for raised warnings
      Merge pull request #3912 from cpcloud/try-convert-when-plotting
      Merge pull request #3927 from jtratner/fix-indentation-error-in-assert-produces-warning
      DOC: fix to_json docstring nesting issue
      BUG: fix python3/2 numpy import_array macro build issue with clang
      Merge pull request #3936 from cpcloud/json-fix-round-2
      Merge pull request #3803 from jtratner/makefile-updates
      Merge pull request #3946 from Komnomnomnom/ujson-update
      Merge pull request #3955 from jtratner/makefile-updates
      BUG/BLD: add compiler flag for older compilers
      Merge pull request #3959 from cpcloud/ujson-cmplr-flag-fix
      CLN/DOC: convert GH* issue mentions to the extlinks version
      CLN/DOC: move release notes to docs
      CLN: remove ability to refer to pull requests by sphinx roles
      CLN/DOC: change links to release notes in CONTRIBUTING and whatnews
      CLN: remove :hidden: and change release to markdown
      Merge pull request #3961 from cpcloud/github-issue-sphinxext
      CLN: fix grammar in extract_index error message
      TST: update test to reflect error message change
      Merge pull request #3972 from cpcloud/fix-error-msg
      DOC: put release notes link to dev until 0.11.1 is released
      Merge pull request #3975 from cpcloud/release-notes-link-fix
      TST/BUG: fix MANIFEST.in to reflect the change of file type of RELEASE
      Merge pull request #3987 from cpcloud/manifest-fix
      ENH: raise a more a useful exception on empty files
      Merge pull request #3989 from cpcloud/empty-csv-fix
      CLN: fix invalid python26 exception specification
      Merge pull request #4000 from cpcloud/fix-invalid-exception-spec
      BUG: modulo should not be commutative in general
      ENH: add support for rmod
      Merge pull request #4035 from cpcloud/fix-rmod
      CLN/DOC: remove all remnants of the 0.11.1 version number
      CLN/DOC: move all 0.12s to 0.13
      Merge pull request #4038 from cpcloud/rls-whatsnew-version-number-update
      BUG: use context manager for urlopen
      DOC: add rls/whatsnew
      Merge pull request #3985 from cpcloud/network-socket-errno-thing
      TST: add test for DataReader class and fix failing network tests for good
      Merge pull request #4054 from cpcloud/fix-failing-data-py-tests
      TST/BUG: do not call regular density tests when testing kde color
      BUG: deal with gcf-style figures in hist_series
      Merge pull request #4021 from cpcloud/hist-figure-arg-fix
      BUG: fix 1xN mask on 1xN frame
      TST: use DataFrame in the test
      Merge pull request #4073 from cpcloud/internals-mask-edge-case
      TST/BUG: fix 2to3 import rewrite of import pickle
      TST: make tox block when running in parallel
      Merge pull request #4063 from cpcloud/tox-pkl-import-fix
      CLN: clean up data.py
      Merge pull request #4002 from cpcloud/data-dot-py-cleanup
      TST: more data.py cleanup
      Merge pull request #4085 from cpcloud/data-dot-py-cleanup
      BUG: pass sharex and sharey in grouped_hist
      Merge pull request #4091 from cpcloud/fix-share-params-grouped-hist
      Merge pull request #4009 from jtratner/add-network-label-to-test-html
      CLN: use how="all" so that things that are not nan in other columns are kept
      Merge pull request #4111 from cpcloud/data-dot-py-cleanup
      BUG: fix replace bug when a nested dict was passed
      Merge pull request #4117 from cpcloud/replace-nested-dict-fix
      Merge pull request #4124 from jtratner/small_Makefile_fix
      BLD: install pip serially
      Merge pull request #4141 from cpcloud/travis-install-pip-serially
      BLD: add lxml back in
      BLD: add requirements files and update install.sh
      Merge pull request #4153 from cpcloud/req-files

Richard Höchenberger (3):
      ENH, CLN: When melt()'ing, allow for specification of custom variable and value names of the resulting DataFrame. Also fix indentation in melt() example to reflect actual output.
      ENH: Add actual test assertions for melt().
      DOC: Add documentation for new melt() functionality.

Skipper Seabold (18):
      DOC: Fix header
      DOC: Clarify what Categorical takes.
      REF: Deprecate Factor for Categorical.
      ENH/DOC: Allow levels=None for Categorical
      TST: Test Categorical constructor with levels=None
      DOC: Coherent english in docstring
      TST: Test describe method of Categorical
      ENH: Add a describe method to Categorical.
      REF: Remove Factor alias left by mistake.
      ENH: Add levels=None in deprecated class too.
      DOC: Factor -> Categorical.
      REF: Factor -> Categorical.
      TST: Test Series.sort with ascending
      ENH: Allow sorting of Series in ascending order
      TST: Add failing str.replace test with flags
      ENH: Allow passing of flags in replace
      DOC: Added Categorical improvements to release notes
      DOC: Clarify quote behavior parameters

Tobias Brandt (4):
      ENH: Experimental CustomBusinessDay DateOffset class. Fixes GH2301.
      TST: Copied existing tests for BusinessDay for CustomBusinessDay to test that
      DOC: Added notes on the CustomBusinessDay class to the release notes as well as
      CLN: Added *.dta to the .gitignore. Fixed typo in comment.

Tom Farnbauer (1):
      ENH: (GH3863) Timestamp.min and Timestamp.max return a valid Timestamp

TomAugspurger (4):
      ENH: Adding '.' as an na_value for FRED.
      Adding some tests to cover the FRED data fetching code.
      ENH: Better error message if a bad series name is passed to the
      DOC: Updated RELEASE.rst with change notes.

Trent Hauck (1):
      fix typo - change conn to con

Wes McKinney (18):
      Merge PR #3663
      TST: unit test for #3503
      Merge pull request #3694 from pydata/PR-test-3503
      REF: promote parser.pyx into top level
      CLN: remove sandbox cruft
      BUG: fix _parser->parser import (sorry)
      BUG: fix tokenizer bug with \r line terminator and quoted fields. closes #3453
      Merge PR #3673
      BUG: fix failing scatter matrix test
      Merge pull request #3814 from gliptak/googledata
      DOC: release note for #3814
      Merge pull request #3816 from gliptak/patch-1
      ENH: pull pandasjson back into pandas
      DOC: add ultrajson license
      TST: json manip test script. and trigger travis
      BUG: fix item cache invalidation bug in #3970 caused by is_mixed_type silently consolidating (hurf). also fix stable sorting bug presenting on my machine
      BUG: fix failing usage of self.assertRaisesRegexp for python 2.6
      RLS: first release candidate for v0.12.0

Wouter Overmeire (2):
      TST: skip tests needing xlrd
      BUG: fix Series.interpolate() corner cases, close #3674

conmai (1):
      DOC: Added some decriptions to the Selection subsection of the Cookbook

dieterv77 (2):
      Merge pull request #3470 from dieterv77/SeriesDot
      Merge pull request #3619 from dieterv77/FixGH3601

ejnens (1):
      BLD: add setup_requires in setup.py so numpy can be used with buildout

gliptak (4):
      improve error message when xlrd import fails
      correct FRED test (GDP changed ...)
      remove unused import in test_yahoo
      Tag yahoo data tests as @network only

jniznan (1):
      ENH: DataFrame.corr(method='spearman') is cythonized.

jreback (332):
      BUG: GH3437 to_csv issue with large number of rows and some NaT in multiple
      BUG: GH3449 .loc was not raising when passed an integer list
      Merge pull request #3451 from jreback/GH3449
      BUG: GH3448  Unordered time series selection was misbehaving when using label slicing
      Merge pull request #3452 from jreback/GH3448
      BUG: GH3455 Duplicate indexes with getitem will return items in the correct order
      Merge pull request #3447 from danielballan/remove-raises-keyerror
      Merge pull request #3459 from jreback/GH3455
      BUG: GH3461 Fix sorting in a frame with a list of columns which contains datetime64[ns] dtypes
      Merge pull request #3464 from jreback/GH3461
      BUG: GH3480 Fix regression in a DataFrame apply with axis=1
      Merge pull request #3502 from jreback/GH3480
      Merge branch 'master' of https://github.com/jmellen/pandas into jmellen-master
      BUG: GH3468 Fix assigning a new index to a duplicate index in a DataFrame would fail
      ENH: support for having duplicative indices across blocks (dtypes)
      BUG: enabled applymap to work (and updated internals/convert to use iget) when
      BUG: GH3495 change core/format/CSVFormatter.save to allow generic way of dealing
      PERF: allow a cache_readonly to be 'set' if allow_settings is passed on the decoration
      Merge pull request #3509 from jreback/dup_columns2
      DOC: cookbook update
      DOC: more cookbook.rst
      BUG: Fixed bug in mixed frame assignment with aligned series (GH3492)
      Merge pull request #3533 from jreback/GH3492
      ENH: HDFStore will retain index attributes (freq,tz,name) on recreation (GH3499_)
      ENH: support timezone data_columns in HDFStore (GH2852)
      BUG: Fixed bug in selecting month/quarter/year from a series would not select the time element
      Merge pull request #3548 from jreback/GH3546
      Merge pull request #3531 from jreback/hdf_bug
      BUG: GH3416 properly convert np.datetime64 objects in the _possibily_convert_datetimes
      CLN: _possibily_convert_datetimes now uses to_datetimes internally
      BUG: fixes GH3425, raising on passed invalid dtypes for datetimelike
      PERF: HDFStore append optimize
      Merge pull request #3537 from jreback/hdf_optimize
      Merge pull request #3516 from jreback/GH3416
      BUG/TST: fixed up retaining of index names in the table .info (like freq/tz)
      Merge pull request #3549 from jreback/hdf_bug2
      BUG: raise on invalid operations for timedelta/datetime
      Merge pull request #3550 from jreback/ts_bug
      BUG: Fix ``.diff`` on datelike and timedelta operations (GH3100_)
      Merge pull request #3554 from jreback/GH3100
      BUG: ``combine_first`` not returning the same dtype in cases where it can (GH3552_)
      Merge pull request #3555 from jreback/GH3552
      DOC: cleanup line endings
      BUG: Duplicate indexes with and empty DataFrame.from_records will return a correct frame (GH3562_)
      Merge pull request #3564 from jreback/GH3562
      Merge pull request #3558 from cpcloud/panel-transpose-args-fix-3556
      DOC: minor release.rst changes
      Merge pull request #3565 from cpcloud/read-html-readme
      DOC: readme.rst edits
      DOC: more readme.rst edits
      DOC: readme.rst edits
      DOC: readme.rst
      Merge pull request #3569 from cpcloud/iterrows-doc-3566
      BUG:  Fixed bug in reset_index with ``NaN`` in a multi-index (GH3586_)
      Merge pull request #3580 from cpcloud/argminmax-doc-3574
      Merge pull request #3587 from jreback/set_index_nan
      TST: GH3579, period index misbehaving in groupby
      Merge pull request #3591 from jreback/groupby_period_index
      BUG: (GH3593) fixed a bug in the incorrect conversion of datetime64[ns] in combine_first
      Merge pull request #3595 from jreback/combine_first_timestamp
      Merge pull request #3585 from cpcloud/fillna-raise-on-value-is-list-3435
      BUG: Fixed bug where a time-series was being selected in preference to an actual column name
      Merge pull request #3597 from jreback/table_bug
      BUG:  Fix integer modulo and division to work in a similar manner on integer dtypes as float dtypes (GH3590_).
      BUG: non-unique indexers with a list-like now return in the same order as the passed values
      BUG: handle missing indexers in duplicate indices similary to how unique handles (e.g. by reindexing)
      Merge pull request #3563 from jreback/GH3561
      Merge pull request #3600 from jreback/modulo
      DOC: basics.rst fix tiny error
      BUG: Fix incorrect dtype on groupby with ``as_index=False`` (GH3610_)
      Merge pull request #3613 from jreback/groupby_dtype
      BUG: Add reduce_if_possible keyword to ``groupby`` to allow reduction from
      Merge pull request #3599 from jreback/groupby_output
      Merge pull request #3544 from lexual/read_csv_doc_usecols
      BUG: (GH3611) Fix read_csv to correctly encode identical na_values, e.g. na_values=[-999.0,-999] was failing
      Merge pull request #3615 from jreback/read_csv_na_values
      BUG: (GH3617) Fix indexing issue with ndim >= 3 with iloc
      Merge branch 'master' of https://github.com/PKEuS/pandas into PKEuS-master
      Merge pull request #3618 from jreback/iloc_broken
      BUG: fixed platform int issues on 32-bit
      Merge pull request #3620 from jreback/tests_fail_fix
      BUG: (GH3062) Correctly parse date columns with embedded (nan/NaT) into datetime64[ns] dtype in ``read_csv``
      Merge pull request #3621 from jreback/nat
      DOC: more informative PerformanceWarning
      Merge pull request #3623 from jreback/hdf_perf_warn
      BUG: Fix not consolidating before to_csv (GH3624_)
      Merge pull request #3625 from jreback/to_csv
      BUG: (GH3626) issue with alignment of a DataFrame setitem with a piece of another DataFrame
      BUG: validate ndarray size correctly with assigning pieces to a DataFrame
      Merge pull request #3632 from jreback/assign_df
      DOC: minor edits in missing_data.rst and io/stata edits
      API: Raise on ``iloc`` indexing with a mask boolean that is not an ndarray (GH3631_)
      CLN: added NotImplementedError when trying to iloc with a mask that has an integer index
      Merge pull request #3635 from jreback/iloc_mask
      ENH: to_csv write multi-index columns similar to how they are displayed in to_string
      ENH: Allow read_csv to handle multi-index in columns
      TST: more test cases
      ENH/CLN: refactor to support PythonParser as well as CParser
      BUG: unnamed columns in a multi-index will be named like: Unamed 2_level_0, so they are not duplicated
      DOC: updated releasenotes, v0.11.1 whatsnew, io.rst
      TST: test for tupleize_cols=True,index=False
      Merge pull request #3575 from jreback/mi_csv
      BUG: Concat to produce a non-unique columns when duplicates are across dtypes is fixed (GH3602_)
      DOC: cookbook.rst adds and release notes merge fix
      Merge pull request #3647 from jreback/concat_issue
      DOC: minor v0.11.1 editing
      Merge branch 'series-str-iter-3638' of https://github.com/cpcloud/pandas into cpcloud-series-str-iter-3638
      DOC: v0.11.1 doc update
      Merge branch 'io_sql_one_column' of https://github.com/stonebig/pandas into stonebig-io_sql_one_column
      TST: added full frame test
      Merge pull request #3639 from cpcloud/replace-with-regex-2285
      BUG: pivot fixing
      Merge pull request #3627 from jreback/multi_nan
      TST: fixup 32-bit failing tests
      Merge pull request #3648 from jreback/test_32bit
      Merge branch 'categorical-cleanup' of https://github.com/jseabold/pandas into jseabold-categorical-cleanup
      TST: changed test_factor -> test_categorical
      Merge pull request #3646 from jseabold/fix-replace-kwds
      Merge pull request #3630 from jseabold/series-sort-ascending
      TST: fix unicdoe errors test_strings
      Merge pull request #3652 from jreback/py3_fixes
      DOC: release notes/v0.11.1 updates
      TST: added html5lib,bs4 to ALL DEPS installs on travis
      TST: revert html5lib testing until fixed
      BUG: Non-unique indexing via ``loc`` and friends fixed (GH3659_)
      CLN: did not need to convert to index array/slicer as the only
      Merge pull request #3661 from jreback/loc_non_unique
      DOC: correct iterator/chunksize docs in regards to return value (is TextFileReader), not TextParser
      DOC: add scalar results for timedeltas docs to timeseries.rst
      Merge pull request #3655 from cpcloud/read-html-travis-fix-3654
      Merge pull request #3649 from hoechenberger/master
      DOC: release notes for melt
      BUG: Fix alignment issue when setitem in a mixed-DataFrame with a Series (GH3668_)
      Merge pull request #3670 from jreback/set_with_series
      BUG:  convert_objects with convert_dates=coerce was parsing some single-letter strings
      Merge pull request #3656 from cpcloud/read-html-to-html-doc
      Merge pull request #3671 from jreback/convert_objects
      TST: dtype issue on 32-bit with melt
      TST: turn off sometimes failing test in test_pytables.py
      Merge pull request #3572 from cpcloud/plot-nonnumeric-data-exc-1818
      Merge pull request #3675 from cpcloud/remove-interpolate-3582
      DOC: cookbook/v0.11.1 updates
      Merge branch 'from-records-fix-3682' of https://github.com/cpcloud/pandas into cpcloud-from-records-fix-3682
      BUG: inserting dups into blocks ok
      BUG: non-unique column index was failing in construction if from an ndarray
      BUG: not setting placement on reindex_with_indexers
      Merge pull request #3683 from jreback/dup_insert
      Merge pull request #3700 from tdsmith/patch-1
      TST: test for to_csv to succeed with deprecated options (GH3701)
      CLN: added io.api for i/o importing functions
      TST: provide warning when using ExcelWriter/ExcelObject if from deprecated path
      Merge pull request #3693 from jreback/io_api
      Merge pull request #3702 from cpcloud/read-and-friends-path-or-buf
      Merge pull request #3704 from cpcloud/read-write-html-docs
      Merge pull request #3720 from cpcloud/null-funcs-api-doc-generate
      Merge pull request #3712 from cpcloud/deprecate-unused-replace-args
      Merge pull request #3696 from cpcloud/nonzero-3691
      DOC: doc building fixes
      Merge pull request #3677 from cpcloud/option-syntax-enh-3667
      DOC: api.rst updates
      DOC: v0.11.1 editing
      DOC: io/v0.11.1 changes
      DOC: v0.11.1 cross-links to other parts of the docs
      Merge pull request #3725 from cpcloud/sphinx-doc-fixes-3721
      DOC: readme.rst to reflect changes in install.rst
      Merge pull request #3732 from cpcloud/read-html-docs-fix
      Merge pull request #3735 from cpcloud/fix-travis-bug
      PERF: (GH3733) where block splitting now done in at most 2 blocks rather than
      BUG: _interleave now returns an lcd of int64 or 2 x the intsize if
      Merge pull request #3736 from jreback/mask_slow
      BUG: (GH3740) Groupby transform with item-by-item not upcasting correctly
      BUG: ensure float into function of series transform when item-by-item
      Merge pull request #3743 from jreback/groupby_int
      Merge pull request #3737 from jtratner/fix-assert-almost-equal
      BUG: (GH3748) Incorrectly read a HDFStore multi-index Frame witha column specification
      Merge pull request #3749 from jreback/hdf_mi
      DOC: warning that PyTables not yet supported on python >= 3.0
      Merge pull request #3741 from cpcloud/read-html
      DOC: update io.rst for PyTables 3.0.0 compat
      DOC: fix typo in core.series.__new__ docstring
      Merge pull request #3751 from cpcloud/read-html-bs4-install-docs
      BUG: (GH3611) revisited; read_excel not passing thru options to ExcelFile.parse
      Merge pull request #3758 from jreback/parse_na
      TST: failing test on py3k in test_expressions, trying to use 'div' operator
      TST: travis to build numexpr/tables on py3k
      DOC: docstring/release notes updates for py3k
      ENH: provide py3k string decoding and compat
      ENH: added TermValue, and do readWhere with condvars
      TST: fixed do_copy testing
      DOC: release notes update
      BUG: fix numpy 1.6.1 issues; remove need for condvars and use literals in
      Merge pull request #3762 from jreback/hdf_py3k
      TST: install numexpr always on travis, bottleneck on full-deps
      Merge pull request #3768 from jreback/travis
      Merge pull request #3731 from cpcloud/raise-on-datetime-ufuncs-3726
      Merge pull request #3771 from nipunreddevil/cookbook-epoch-handling
      BUG: (GH3481) revised, fix concat to allow a passed generator as the single arg
      Merge pull request #3770 from cpcloud/tox-let-more-tests-run
      Merge branch 'filter' of https://github.com/danielballan/pandas into danielballan-filter
      Merge pull request #3790 from kermit666/patch-1
      Merge pull request #3789 from nipunreddevil/cookbook-csv
      BUG: (GH3795) better error messages for invalid dtype specifications in read_csv
      Merge pull request #3797 from jreback/GH3795
      DOC: fix groupby.rst building
      DOC: coookbook.rst
      CLN: refactored url accessing and filepath conversion from urls to io.common
      Merge pull request #3808 from jreback/iocom
      Merge pull request #3809 from cpcloud/ipython-cache-fix
      Merge pull request #3802 from cpcloud/tips-dataset-link
      CLN: conform read_clipboard / to_clipboard to new io standards
      Merge pull request #3824 from jreback/clipboard
      BUG: missing imports for clipboard
      BUG: missing imports from clipboard 2
      CLN: add banklist.html to _static
      BUG: GH3611 fix again, float na_values were not stringified correctly
      BUG: add na_fvalues to parsers to enable matching of float values w/o relying on string matching
      BLD: fix setup.py to work on current pandas
      CLN: revised json support to use the to_json/read_json in pandas.io.json
      DOC: io.rst doc updates
      API: to_json now writes to a file by default (if None is provided it will return a StringIO object)
      ENH: removed json argument, now path_or_buf can be a path,buffer,url,or JSON string
      ENH: added date_format parm to to_josn to allow epoch or iso formats (which both can be
      BUG: patch in weird nested decoding issue, courtesy of @Komnomnomnom
      Merge pull request #3841 from jreback/GH3611_2
      DOC: cooking.rst update
      Merge pull request #3804 from jreback/ujson
      Merge pull request #3855 from jtratner/patch-1
      CLN: avoid Unboundlocal error in tools/merge/_get_concatenaged_data (GH3833)
      Merge pull request #3864 from jreback/concat_single_item
      BUG: not processing TypeError on reading some json (so was failing rather than trying not-numpy for dtypes)
      ENH: added convert_axes argument to control whether to coerce axes
      TST: tests for numpy=True/False differeing in parsing
      PERF: changed default to numpy=False to have correct parsing using unordered JSON
      ENH: Add unit keyword to Timestamp and to_datetime to enable passing of
      TST: disallow slicing a timeseries with floats
      BUG: make sure that nan/none like values to Timestamp are returned as NaT
      Merge pull request #3840 from lodagro/issue_3674
      BUG: (GH3880) index names are now propogated with loc/ix
      Merge pull request #3818 from jreback/epoch
      Merge pull request #3876 from jreback/json_rt
      Merge pull request #3887 from jreback/loc_name
      BLD: install older versions of numexpr/pytables on fulldeps/2 build
      Merge pull request #3891 from jreback/hdf_bld
      DOC: minor io.rst edits
      TST: json tests to int64 to avoid dtype issues
      TST: skip tests if xlrd has lower than needed version
      TST: skip pickle tests on not-little endianess
      TST: skip test_encoding on non-little endian in test_pytables
      TST: skip some stata tests on non-little endian
      TST: convered skips on knownfailures to knownfailures (test_pickle/test_stata)
      Merge pull request #3898 from jreback/test_fixes
      TST: convert knowntestfailures to skip tests
      Merge pull request #3906 from jreback/test_fix2
      BUG: (GH3911) groupby appying with custom function resulting in frame did not convert dtypes
      Merge pull request #3913 from jreback/groupby_apply
      Merge pull request #3874 from cpcloud/c-ujson-fix
      Merge branch 'replace-convert-dtypes-3907' of https://github.com/cpcloud/pandas into cpcloud-replace-convert-dtypes-3907
      Merge pull request #3930 from cpcloud/json-docstring-fix
      CLN: cleaned up _try_cast in core/groupby.py to eliminate cruft
      DOC: cookbook updates - added idiom section
      Merge pull request #3934 from jreback/GH3920
      Merge branch 'correlations' of https://github.com/jniznan/pandas into jniznan-correlations
      PERF: stats_corr a smaller vbsuite
      DOC: update release notes
      DOC: timeseries.rst/timedelta not building properly
      DOC: partial string indexing docs in timeseries.rst (GH3938)
      Merge pull request #3915 from jtratner/fix-crlf-in-repo
      Merge pull request #3939 from jreback/partial_string
      Merge pull request #3764 from jtratner/fix_division_with_numexpr
      ENH: enable support for iterator with read_hdf in HDFStore (GH3937)
      Merge pull request #3949 from jreback/hdf_iterator
      Merge pull request #3903 from ejnens/master
      API: more consistency in the to_datetime return types (give string/array of string inputs) (GH3888)
      BUG: truncate will only try to convert to dates for an all_dates index
      Merge pull request #3890 from jreback/to_datetime
      BUG: (GH3925) Indexing with a string with seconds resolution not selecting from a time index
      Merge pull request #3931 from jreback/time_indexing
      Merge branch 'googlenetwork' of https://github.com/gliptak/pandas into gliptak-googlenetwork
      DOC: edit release notes
      Merge pull request #3956 from jtratner/change-bare-exceptions-1
      DOC: release notes
      Merge pull request #3935 from PKEuS/master
      BUG  (GH3967) csv parsers would loop infinitely if ``iterator=True`` but no ``chunksize`` was
      Merge pull request #3978 from jreback/parser_iterator
      Merge pull request #3914 from jtratner/fix-network-using-tests
      DOC: release notes
      DOC: datetime example in timeseries.rst
      DOC: default for clipboard parsing is to parse whitespace
      DOC: reformat io.rst/data reader
      Merge pull request #3822 from gliptak/googleoptions
      TST: mark test_yahoo/test_options as failing (and skip)
      TST: correctly mark test_options in test_yahoo to skip
      Merge pull request #4030 from ogiaquino/Remove_import_nose_in_testing.py
      Merge pull request #4010 from snth/typos
      BUG: (GH4032) Fixed insertion issue into DataFrame, after rename
      Merge pull request #4024 from danbirken/secondary_y_for_bar_plot
      Merge pull request #4043 from jreback/GH4032
      Merge branch 'parser-docs' of https://github.com/jseabold/pandas into jseabold-parser-docs
      DOC: updated io.rst with quoting options in docstring
      BUG: GH4017, efficiently support non-unique indicies with iloc
      Merge pull request #4018 from jreback/iloc_bug
      TST: remove test_yahoo options test skipping
      Merge pull request #4048 from jreback/test_options
      Merge pull request #3860 from qwhelan/plotting_colormap
      PERF: perf regressions on insertion of columns into frame (related to 4032)
      Merge pull request #4057 from jreback/insert_columns
      DOC: cookbook examples
      PERF: optimize iloc for unique case
      Merge pull request #4070 from jreback/iloc_perf
      PERF: optimize insert_columns
      Merge pull request #4075 from jreback/insert_col_perf
      Merge branch 'fix-consolidate-cache-invalidation-gh3970' of https://github.com/wesm/pandas into wesm-fix-consolidate-cache-invalidation-gh3970
      CLN: have _consolidate_inplace invalidate the cache when needed
      Merge pull request #4031 from danbirken/add_layout_to_frame_histogram
      BUG: GH4098, HDFStore not recreating a datetime index properly when has a timezone
      Merge pull request #4099 from jreback/hdf_tz
      BUG: (GH 4096) block ordering is somewhat non-deterministic in HDFStore, so reorder to the existing store
      Merge pull request #4100 from jreback/hdf_buglet
      Merge pull request #4092 from jtratner/refactor_string_special_methods
      Merge branch 'timestamp_min_max' of https://github.com/SleepingPills/pandas into SleepingPills-timestamp_min_max
      ERROR: better error message reporting on inserting incompatible column to frame (GH4107)
      Merge pull request #4108 from jreback/GH4107
      CLN/TST: cleanup exception message testing by replacing with assertRaisesRegexp
      Merge pull request #4114 from jreback/error_msgs
      BUG: GH4119 Fixed bug in ``convert_objects(convert_numeric=True)`` where a mixed numeric and
      Merge pull request #4120 from jreback/convert_objects
      BUG/TST: test fixes for windows compat
      Merge pull request #4123 from jreback/win_bug
      BUG: (GH4145/4146) Fixed bugs in multi-index selection with column multi-index and duplicates
      Merge pull request #4148 from jreback/mi2
      TST: additional test case for GH4146
      Merge pull request #4149 from jreback/mi2.2

lexual (1):
      document read_csv's usecols argument.

nipunreddevil (7):
      Added link to epoch handling in read_csv
      Added correct link to cookbook for CSV read with epoch timestamps
      Added examples to CSV section in cookbook
      Added documentation for to_clipboard()
      Added a line about same retrieved content
      Modified to reflect usage of pypaperclip and put all code in one block
      fixed typo

ogiaquino (3):
      Fix rename for MultiIndex columns DataFrame
      Add a release note for #4004
      BUG: Removed import nose on top of testing.py script

stonebig (2):
      TST: issue (#3628) when writing a dataframe column of integers to sqlite
      BUG : issue (#3628) when writing a dataframe column of integers to sqlite

tim smith (2):
      DOC: use na_rep not nanRep in .to_csv()
      BUG: Deprecation error should not be fatal

timmie (1):
      Update io.rst

y-p (95):
      CLN: eliminate assert in favor of AssertionError GH2057
      CLN: remove some unicode hair from pre-pprint_thing days GH3360
      CLN: remove some unicode hair from pre-pprint_thing days GH3360
      Merge pull request #3364 from y-p/unicode_fixes
      ENH: Use xlrd >=0.9.0 for both xls/xlsx, sidesteps GH1629
      Merge pull request #3164 from y-p/excel_xlrd_only
      Merge pull request #3023 from y-p/no_asserts
      Merge pull request #3038 from y-p/pprint_warts
      BUG: pprint_thing should pprint and limit nested sequences when formatting dicts GH3251
      Merge pull request #3252 from y-p/GH3251A
      TST: Timestamp repr is valid python code
      ENH/CLN: make Timestamp repr executable, like datetime
      Merge pull request #3379 from y-p/timestamp_repr
      DOC: update RELEASE.rst
      BLD: no rest for the wicked
      DOC: stubs for 0.12 what's new
      DOC: bring back numpydoc
      DOC: mention numpydoc docstrings in CONTRIBUTING.md
      Merge pull request #3422 from karmel/master
      TST: add df.to_csv multiple dt cols with NaT GH3437
      Merge branch 'more_csv_moar'
      Merge branch 'panel_docs'
      BUG: index.map fast path raises recursion warnings on index.time GH3419
      Merge pull request #3450 from y-p/GH3419
      DOC: update comment
      ENH/CLN: redo pprint_warts merge, rebased PR lost the show
      TST: to_csv respects cols= reordering GH3454/7
      BUG: to_csv handles cols= reordering,dupe cols GH3454/7
      DOC: update RELEASE.rst
      Merge pull request #3458 from y-p/GH3454
      BUG/ENH: (Multi)Index pprint items by type correctly, obeys display.max_seq_items GH3465
      TST: adjust test_repr_summary to set display.max_seq_items
      DOC: update RELEASE.rst
      Merge pull request #3466 from y-p/more_pprint
      DOC: explain travis-ci in CONTRIBUTING.md for the non-cognisanti
      DOC: explain travis-ci in CONTRIBUTING.md for the non-cognisanti
      Merge pull request #3469 from TomAugspurger/fred_na
      Merge pull request #3467 from kyleam/tolatex-index
      DOC: tweak indexing.rst
      DOC: add note on pickle being unsafe to docs and pd.load docstring
      DOC: Arrange things for 0.11.1
      DOC: Inject small measure of sanity to line width on wide screen
      Add mangle_dupe_cols option to read_csv/table GH3468
      DOC: add RELEASE.rst note anticipating breaking change in 0.12.0
      Merge pull request #3517 from lodagro/test_excel
      Merge branch 'PR3510'
      DOC: CONTRIBUTING.md, add link to discussion on plotting code conventions
      DOC: update RELEASE.rst
      Merge branch 'cpcloud_read_html'
      Merge pull request #3527 from cpcloud/qt-repr-bug
      Merge pull request #3511 from y-p/PR_mangle_dupe_cols_option
      DOC: update RELEASE.rst
      Merge pull request #3530 from jseabold/docs-cleanup
      Merge pull request #3557 from cpcloud/html-typeerror-bug-fix
      TST: to_html regards empty string labels as repeated labels GH3547
      BUG: to_html regards empty string labels as repeated labels GH3547
      Merge branch 'GH3547'
      DOC: update RELEASE.rst
      Merge pull request #3560 from cpcloud/period-index-unicode-evaling-3460
      DOC: update RELEASE.rst
      DOC: tweak
      Merge branch 'PR3536'
      DOC: remove v0.12.0.txt from whats new
      Merge pull request #3559 from cpcloud/concat-invalid-args-exception-3481
      Merge pull request #3504 from pjob/s3-support
      DOC: correct mpl_style option name in whatsnew.html GH3640
      DOC: CONTRIBUTING.md
      BUG: tests should use almost_equal for comparing float equal
      DOC: update RELEASE.rst
      DOC: add FAQ section on dataframe repr display options GH3541
      ENH/CLN: add helpers for ipnb detection
      ENH: special case HTML repr behaviour on ipnb GH3573
      ENH: disable qtconsole HTML output again. add explanation why.
      DOC: update RELEASE.rst
      BUG: rework display logic again. deprecate display.height
      DOC: Update Faq section on repr display options
      DOC: update RELEASE.rst
      BLD: setup.py should state 0.11.1 not 0.12
      BUG: restore 10.1 expand_repr behaviour, only for < max_cols, if wider then term GH3706
      Merge pull request #3713 from y-p/PR_ode_to_joy
      BUG: fix float equal assert with almost_equals
      DOC: clarify option string for expand_repr
      BUG/TST: fix tests for expand_repr behaviour
      Merge pull request #3716 from cpcloud/version-fix
      BLD: refactoring in test_perf
      BLD: make affinity optional, and reduce user message drama
      BLD: test_perf.py, add --base-pickle --target-pickle options to test_perf
      Merge pull request #3734 from y-p/PR_test_perf_pickle_compare
      CLN: remove spurious print
      CLN: remove unused travis network build cache, simplify ci/
      Merge pull request #3929 from y-p/PR_PTF_no_more
      BLD: use binary packages to reduce travis-ci build times.
      Merge pull request #4128 from y-p/PR_travis_speedups
      BLD: readd missing envar in ci/install.sh
      BLD: Disable binary packages while fixes are under way

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

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