Releases: pandas-dev/pandas
v0.20.3 Final
This is a minor bug-fix release in the 0.20.x series and includes some small regression fixes
and bug fixes. We recommend that all users upgrade to this version.
See the v0.20.3 Whatsnew page for an overview of all the bugs that have been fixed in 0.20.3.
v0.20.2 Final
This is a minor bug-fix release in the 0.20.x series and includes some small regression fixes,
bug fixes and performance improvements.
We recommend that all users upgrade to this version.
See the v0.20.2 Whatsnew page for an overview of all the bugs that have been fixed in 0.20.2.
v0.20.1 Final
This is a minor release from 0.20.0 and includes a single change for backwards-compatibility with downstream projects using pandas' utils routines. See here.
See the Whatsnew file for more information. Please report any issues here.
The release can be installed with conda from the conda-forge channel (builds for osx-64, linux-64 and win-64 for Python 2.7, Python 3.5, and Python 3.6 are all available):
conda install -c conda-forge pandas
Or via PyPI:
pip install --upgrade pip setuptools
pip install --pre --upgrade --upgrade-strategy=only-if-needed pandas
v0.20.0 Final
This is a major release from 0.19.2 and includes a number of API changes, deprecations, new features,
enhancements, and performance improvements along with a large number of bug fixes. We recommend that all users upgrade to this version.
Highlights include:
- new
.agg()API for Series/DataFrame similar to the groupby-rolling-resample API's, see here - Integration with the
feather-format, including a new top-levelpd.read_feather()andDataFrame.to_feather()method, see here - The
.ixindexer has been deprecated, see here Panelhas been deprecated, see here- Addition of an
IntervalIndexandIntervalscalar type, see here - Improved user API when accessing levels in
.groupby(), see here - Improved support for
UInt64dtypes, see here - A new orient for JSON serialization,
orient='table', that uses the Table Schema spec, see here - Experimental support for exporting
DataFrame.styleformats to Excel, see here - Window Binary Corr/Cov operations now return a MultiIndexed
DataFramerather than aPanel, asPanelis now deprecated, see here - Support for S3 handling now uses
s3fs, see here - Google BigQuery support now uses the
pandas-gbqlibrary, see here - Switched the test framework to use pytest
See the Whatsnew file for more information.
v0.20.0rc2
RELEASE CANDIDATE 2
This is a major release from 0.19.2 and includes a small number of API changes, several new features,
enhancements, and performance improvements along with a large number of bug fixes.
Please try this RC and report any issues on the pandas issue tracker. We will be releasing officially a day or two.
Highlights include:
- new
.agg()API for Series/DataFrame similar to the groupby-rolling-resample API's, see here - Integration with the
feather-format, including a new top-levelpd.read_feather()andDataFrame.to_feather()method, see here - The
.ixindexer has been deprecated, see here Panelhas been deprecated, see here- Addition of an
IntervalIndexandIntervalscalar type, see here - Improved user API when accessing levels in
.groupby(), see here - Improved support for
UInt64dtypes, see here - A new orient for JSON serialization,
orient='table', that uses the Table Schema spec, see here - Experimental support for exporting
DataFrame.styleformats to Excel, see here - Window Binary Corr/Cov operations now return a MultiIndexed
DataFramerather than aPanel, asPanelis now deprecated, see here - Support for S3 handling now uses
s3fs, see here - Google BigQuery support now uses the
pandas-gbqlibrary, see here - Switched the test framework to use pytest
See the Whatsnew file for more information. Please report any issues here.
The release candidate can be installed with conda from our development channel (builds for osx-64, linux-64 and win-64 for Python 2.7, Python 3.5, and Python 3.6 are all available):
conda install -c pandas pandas=0.20.0rc2
Or via PyPI
pip install --upgrade pip setuptools
pip install --pre --upgrade --upgrade-strategy=only-if-needed pandas
v0.20.0rc1
RELEASE CANDIDATE 1
This is a major release from 0.19.2 and includes a small number of API changes, several new features,
enhancements, and performance improvements along with a large number of bug fixes.
Please try this RC and report any issues on the pandas issue tracker. We will be releasing officially in 1-2 weeks or so.
Highlights include:
- new
.agg()API for Series/DataFrame similar to the groupby-rolling-resample API's, see here - Integration with the
feather-format, including a new top-levelpd.read_feather()andDataFrame.to_feather()method, see here - The
.ixindexer has been deprecated, see here Panelhas been deprecated, see here- Addition of an
IntervalIndexandIntervalscalar type, see here - Improved user API when accessing levels in
.groupby(), see here - Improved support for
UInt64dtypes, see here - A new orient for JSON serialization,
orient='table', that uses the Table Schema spec, see here - Experimental support for exporting
DataFrame.styleformats to Excel, see here - Window Binary Corr/Cov operations now return a MultiIndexed
DataFramerather than aPanel, asPanelis now deprecated, see here - Support for S3 handling now uses
s3fs, see here - Google BigQuery support now uses the
pandas-gbqlibrary, see here - Switched the test framework to use pytest
See the Whatsnew file for more information. Please report any issues here.
The release candidate can be installed with conda from our development channel (builds for osx-64, linux-64 and win-64 for Python 2.7, Python 3.5, and Python 3.6 are all available):
conda install -c pandas pandas=0.20.0rc1
Or via PyPI
pip install --upgrade pip setuptools
pip install --pre --upgrade --upgrade-strategy=only-if-needed pandas
v0.19.2 Final
This is a minor bug-fix release in the 0.19.x series and includes some small regression fixes, bug fixes and performance improvements.
Highlights include:
- Compatibility with Python 3.6
- Added a Pandas Cheat Sheet
See the v0.19.2 Whatsnew page for an overview of all bugs that have been fixed in 0.19.2.
v0.19.1 Final
This is a minor bug-fix release from 0.19.0 and includes some small regression fixes,
bug fixes and performance improvements.
See the v0.19.1 Whatsnew page for an overview of all bugs that have been fixed in 0.19.1.
v0.19.0 Final
This is a major release from 0.18.1 and includes a number of API changes, several new features, enhancements, and performance improvements along with a large number of bug fixes. We recommend that all users upgrade to this version.
Highlights include:
merge_asoffor asof-style time-series joining, see here.rolling()is now time-series aware, see hereread_csvnow supports parsingCategoricaldata, see here- A function
union_categoricalhas been added for combining categoricals, see here PeriodIndexnow has its ownperioddtype, and changed to be more consistent with otherIndexclasses. See here- Sparse data structures gained enhanced support of
intandbooldtypes, see here - Comparison operations with
Seriesno longer ignores the index, see here for an overview of the API changes. - Introduction of a pandas development API for utility functions, see here.
- Deprecation of
Panel4DandPanelND. We recommend to represent these types of n-dimensional data with the xarray package. - Removal of the previously deprecated modules
pandas.io.data,pandas.io.wb,pandas.tools.rplot.
See the Whatsnew file for more information.
v0.19.0rc1
RELEASE CANDIDATE
This is a major release from 0.18.1 and includes a number of API changes, several new features, enhancements, and performance improvements along with a large number of bug fixes. We recommend that all users upgrade to this version.
Highlights include:
merge_asoffor asof-style time-series joining, see here.rolling()is now time-series aware, see hereread_csvnow supports parsingCategoricaldata, see here- A function
union_categoricalhas been added for combining categoricals, see here PeriodIndexnow has its ownperioddtype, and changed to be more consistent with otherIndexclasses. See here- Sparse data structures gained enhanced support of
intandbooldtypes, see here - Comparison operations with
Seriesno longer ignores the index, see here for an overview of the API changes. - Introduction of a pandas development API for utility functions, see here.
- Deprecation of
Panel4DandPanelND. We recommend to represent these types of n-dimensional data with the xarray package. - Removal of the previously deprecated modules
pandas.io.data,pandas.io.wb,pandas.tools.rplot.
See the Whatsnew file for more information. Please report any issues here.
The release candidate can be installed with conda from our development channel (builds for osx-64, linux-64 and win-64 for Python 2.7 and Python 3.5 are all available):
conda install -c pandas pandas=0.19.0rc1