Description
<picture align="center"> <source media="(prefers-color-scheme: dark)" srcset="https://pandas.pydata.org/static/img/pandas_white.svg"> <img alt="Pandas Logo" src="https://pandas.pydata.org/static/img/pandas.svg"> </picture> ----------------- # pandas: A Powerful Python Data Analysis Toolkit | | | | --- | --- | | Testing | [](https://github.com/pandas-dev/pandas/actions/workflows/unit-tests.yml) [](https://codecov.io/gh/pandas-dev/pandas) | | Package | [](https://pypi.org/project/pandas/) [](https://pypi.org/project/pandas/) [](https://anaconda.org/conda-forge/pandas) [](https://anaconda.org/conda-forge/pandas) | | Meta | [](https://numfocus.org) [](https://doi.org/10.5281/zenodo.3509134) [](https://github.com/pandas-dev/pandas/blob/main/LICENSE) [](https://pandas.pydata.org/docs/dev/development/community.html?highlight=slack#community-slack) [](https://insights.linuxfoundation.org/project/pandas-dev-pandas) | ## What is it? **pandas** is a Python package that provides fast, flexible, and expressive data structures designed to make working with "relational" or "labeled" data both easy and intuitive. It aims to be the fundamental high-level building block for doing practical, **real-world** data analysis in Python. Additionally, it has the broader goal of becoming **the most powerful and flexible open-source data analysis/manipulation tool available in any language**. It is already well on its way towards this goal. ## Table of Contents - [Main Features](#main-features) - [Where to get it](#where-to-get-it) - [Dependencies](#dependencies) - [Installation from sources](#installation-from-sources) - [License](#license) - [Documentation](#documentation) - [Background](#background) - [Getting Help](#getting-help) - [Discussion and Development](#discussion-and-development) - [Contributing to pandas](#contributing-to-pandas) ## Main Features Here are just a few of the things that pandas does well: - Easy handling of [**missing data**][missing-data] (represented as `NaN`, `NA`, or `NaT`) in floating point as well as non-floating point data - Size mutability: columns can be [**inserted and deleted**][insertion-deletion] from DataFrame and higher dimensional objects - Automatic and explicit [**data alignment**][alignment]: objects can be explicitly aligned to a set of labels, or the user can simply ignore the labels and let `Series`, `DataFrame`, etc. automatically align the data for you in computations - Powerful, flexible [**group by**][groupby] functionality to perform split-apply-combine operations on data sets, for both aggregating and transforming data - Make it [**easy to convert**][conversion] ragged, differently-indexed data in other Python and NumPy data structures into DataFrame objects - Intelligent label-based [**slicing**][slicing], [**fancy indexing**][fancy-indexing], and [**subsetting**][subsetting] of large data sets - Intuitive [**merging**][merging] and [**joining**][joining] data sets - Flexible [**reshaping**][reshape] and [**pivoting**][pivot-table] of data sets - [**Hierarchical**][mi] labeling of axes (possible to have multiple labels per tick) - Robust I/O tools for loading data from [**flat files**][flat-files] (CSV and delimited), [**Excel files**][excel], [**databases**][db], and saving/loading data from the ultrafast [**HDF5 format**][hdfstore] - [**Time series**][timeseries]-specific functionality: date range generation and frequency conversion, moving window statistics, date shifting and lagging [missing-data]: https://pandas.pydata.org/pandas-docs/stable/user_guide/missing_data.html [insertion-deletion]: https://pandas.pydata.org/pandas-docs/stable/user_guide/dsintro.html#column-selection-addition-deletion [alignment]: https://pandas.pydata.org/pandas-docs/stable/user_guide/dsintro.html?highlight=alignment#intro-to-data-structures [groupby]: https://pandas.pydata.org/pandas-docs/stable/user_guide/groupby.html#group-by-split-apply-c
Release History
| Version | Changes | Urgency | Date |
|---|---|---|---|
| 3.0.2 | Imported from PyPI (3.0.2) | Low | 4/21/2026 |
| v3.0.2 | We are pleased to announce the release of pandas 3.0.2. This is a patch release in the 3.0.x series and includes some regression fixes and bug fixes. We recommend that all users of the 3.0.x series upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/docs/dev/whatsnew/v3.0.2.html) for a list of all the changes. Pandas 3.0 supports Python 3.11 and higher. The release can be installed from PyPI: python -m pip install --upgrade pandas==3.0.* Or from conda-fo | Medium | 3/30/2026 |
| v3.0.1 | We are pleased to announce the release of pandas 3.0.1. This is a patch release in the 3.0.x series and includes some regression fixes and bug fixes. We recommend that all users of the 3.0.x series upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/docs/dev/whatsnew/v3.0.1.html) for a list of all the changes. Pandas 3.0.0 supports Python 3.11 and higher. The release can be installed from PyPI: python -m pip install --upgrade pandas==3.0.* Or from conda- | Low | 2/17/2026 |
| v3.0.0 | We are pleased to announce the release of pandas 3.0.0, a major release from the pandas 2.x series. This release includes various new features, bug fixes, and performance improvements, as well as possible breaking changes. The pandas 3.0 release removed a functionality that was deprecated in previous releases. It is recommended to first upgrade to pandas 2.3 and to ensure your code is working without warnings, before upgrading to pandas 3.0. Highlights include: - [Dedicated string dat | Low | 1/21/2026 |
| v3.0.0rc2 | Release v3.0.0rc2 | Low | 1/14/2026 |
| v3.0.0rc1 | Release v3.0.0rc1 | Low | 12/19/2025 |
| v3.0.0rc0 | We are pleased to announce a first release candidate for pandas 3.0.0. If all goes well, we'll release pandas 3.0.0 in a few weeks. See the [whatsnew][0] for a list of all the changes. The release is available on conda-forge and PyPI. The release can be installed from PyPI python -m pip install --upgrade --pre pandas==3.0.0rc0 Or from conda-forge conda install -c conda-forge/label/pandas_rc pandas==3.0.0rc0 Please report any issues with the release candidate on the p | Low | 12/3/2025 |
| v2.3.3 | We are pleased to announce the release of pandas 2.3.3. This release includes some improvements and fixes to the future string data type (preview feature for the upcoming pandas 3.0). We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.3/whatsnew/v2.3.3.html) for a list of all the changes. Pandas 2.3.3 supports Python 3.9 and higher, and is the first release to support Python 3.14. The release will be available on t | Low | 9/29/2025 |
| v2.3.2 | We are pleased to announce the release of pandas 2.3.2. This release includes some improvements and fixes to the future string data type (preview feature for the upcoming pandas 3.0). We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.3/whatsnew/v2.3.2.html) for a list of all the changes. Pandas 2.3.2 supports Python 3.9 and higher. The release will be available on the conda-forge channel: conda install pand | Low | 8/21/2025 |
| v2.3.1 | We are pleased to announce the release of pandas 2.3.1. This release includes some improvements and fixes to the future string data type (preview feature for the upcoming pandas 3.0). We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.3.1/whatsnew/v2.3.1.html) for a list of all the changes. Pandas 2.3.1 supports Python 3.9 and higher. The release will be available on the conda-forge channel: conda install pa | Low | 7/7/2025 |
| v2.3.0 | We are pleased to announce the release of pandas 2.3.0. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.3.0/whatsnew/v2.3.0.html) for a list of all the changes. Pandas 2.3.0 supports Python 3.10 and higher. The release will be available on the defaults and conda-forge channels: conda install -c conda-forge pandas Or via P | Low | 6/5/2025 |
| v2.2.3 | We are pleased to announce the release of pandas 2.2.3. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.2.3/whatsnew/v2.2.3.html) for a list of all the changes. Pandas 2.2.3 supports Python 3.9 and higher. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: pyth | Low | 9/20/2024 |
| v2.2.2 | We are pleased to announce the release of pandas 2.2.2. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.2.2/whatsnew/v2.2.2.html) for a list of all the changes. Pandas 2.2.2 supports Python 3.9 and higher. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: pyth | Low | 4/10/2024 |
| v2.2.1 | We are pleased to announce the release of pandas 2.2.1. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.2.1/whatsnew/v2.2.1.html) for a list of all the changes. Pandas 2.2.1 supports Python 3.9 and higher. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: pyth | Low | 2/23/2024 |
| v2.2.0 | We are pleased to announce the release of pandas 2.2.0. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.2.0/whatsnew/v2.2.0.html) for a list of all the changes. Pandas 2.2.0 supports Python 3.9 and higher. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: pyth | Low | 1/20/2024 |
| v2.2.0rc0 | We are pleased to announce a release candidate for pandas 2.2.0. If all goes well, we'll release pandas 2.2.0 in about two weeks. See the [whatsnew](https://pandas.pydata.org/pandas-docs/version/2.2.0rc0/whatsnew/v2.2.0.html) for a list of all the changes. The release will be available on conda-forge and PyPI. The release can be installed from PyPI python -m pip install --upgrade --pre pandas==2.2.0rc0 Or from conda-forge conda install -c conda-forge/label/pandas_rc pandas==2.2.0 | Low | 12/22/2023 |
| v2.1.4 | This is a patch release in the 2.1.x series and includes some regression and bug fixes, and a security fix. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.1.4/whatsnew/v2.1.4.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: ``` conda install pandas ``` Or via PyPI: ``` python3 -m pip install --upgrade pandas ``` Please report any issues with the | Low | 12/8/2023 |
| v2.1.3 | This is a patch release in the 2.1.x series and includes some regression and bug fixes, and a security fix. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.1.3/whatsnew/v2.1.3.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: ``` conda install pandas ``` Or via PyPI: ``` python3 -m pip install --upgrade pandas ``` Please report any issues with the | Low | 11/10/2023 |
| v2.1.2 | This is a patch release in the 2.1.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.1.2/whatsnew/v2.1.2.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: ``` conda install pandas ``` Or via PyPI: ``` python3 -m pip install --upgrade pandas ``` Please report any issues with the release on the [pand | Low | 10/26/2023 |
| v2.1.1 | This is a patch release in the 2.1.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.1.1/whatsnew/v2.1.1.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: ``` conda install pandas ``` Or via PyPI: ``` python3 -m pip install --upgrade pandas ``` Please report any issues with the release on the [pand | Low | 9/20/2023 |
| v2.1.0 | We are pleased to announce the release of pandas 2.1.0. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.1.0/whatsnew/v2.1.0.html) for a list of all the changes. Pandas 2.1.0 supports Python 3.9 and higher. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: pyth | Low | 8/30/2023 |
| v2.1.0rc0 | We are pleased to announce a release candidate for pandas 2.1.0. If all goes well, we'll release pandas 2.1.0 in about two weeks. See the [whatsnew][0] for a list of all the changes. The release will be available on conda-forge and PyPI. The release can be installed from PyPI python -m pip install --upgrade --pre pandas==2.1.0rc0 Or from conda-forge conda install -c conda-forge/label/pandas_rc pandas==2.1.0rc0 Please report any issues with the release candidate on th | Low | 8/11/2023 |
| v2.0.3 | This is a patch release in the 2.0.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.0.3/whatsnew/v2.0.3.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas issue tracker | Low | 6/28/2023 |
| v2.0.2 | This is a patch release in the 2.0.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.0.2/whatsnew/v2.0.2.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas i | Low | 5/28/2023 |
| v2.0.1 | This is a patch release in the 2.0.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.0.1/whatsnew/v2.0.1.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas i | Low | 4/24/2023 |
| v2.0.0 | We are pleased to announce the release of pandas 2.0.0, a major release from the pandas 1 series. This release includes some new features, bug fixes, and performance improvements, as well as possible breaking changes. It is recommended that users with existing code upgrade to pandas 1.5.3 before they upgrade to pandas 2, and make sure their code does not generate FutureWarning or DeprecationWarning messages. See the [whatsnew][0] for a list of all the changes. The release will be available | Low | 4/3/2023 |
| v2.0.0rc1 | We are pleased to announce the second release candidate for pandas 2.0.0. If all goes well, we'll release pandas 2.0.0 in about two weeks. See the [whatsnew][0] for a list of all the changes. The release will be available on conda-forge and PyPI. The release can be installed from PyPI python -m pip install --upgrade --pre pandas==2.0.0rc1 Or from conda-forge conda install -c conda-forge/label/pandas_rc pandas==2.0.0rc1 Please report any issues with the release candid | Low | 3/16/2023 |
| v2.0.0rc0 | We are pleased to announce a release candidate for pandas 2.0.0. If all goes well, we'll release pandas 2.0.0 in about two weeks. See the [whatsnew][0] for a list of all the changes. The release will be available on conda-forge and PyPI. The release can be installed from PyPI python -m pip install --upgrade --pre pandas==2.0.0rc0 Or from conda-forge conda install -c conda-forge/label/pandas_rc pandas==2.0.0rc0 Please report any issues with the release candidate on th | Low | 2/20/2023 |
| v1.5.3 | This is a patch release in the 1.5.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.5.3/whatsnew/v1.5.3.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas i | Low | 1/19/2023 |
| v1.5.2 | This is a patch release in the 1.5.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.5.2/whatsnew/v1.5.2.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas i | Low | 11/22/2022 |
| v1.5.1 | This is a patch release in the 1.5.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.5.1/whatsnew/v1.5.1.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas i | Low | 10/19/2022 |
| v1.5.0 | This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.5.0/whatsnew/v1.5.0.html) for a list of all the changes. pandas 1.5.0 supports Python 3.8 and higher. The release will be available on the defaults and conda-forge channels: `conda install -c conda-forge pandas` Or via PyPI: `python3 -m pip install --upgrade pandas` Please r | Low | 9/19/2022 |
| v1.4.4 | This is a patch release in the 1.4.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.4.4/whatsnew/v1.4.4.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas i | Low | 8/31/2022 |
| v1.5.0rc0 | We are pleased to announce a release candidate for pandas 1.5.0. If all goes well, we'll release pandas 1.5.0 in about two weeks. See the [whatsnew][0] for a list of all the changes. The release will be available on conda-forge and PyPI. The release can be installed from PyPI python -m pip install --upgrade --pre pandas==1.5.0rc0 Or from conda-forge conda install -c conda-forge/label/pandas_rc pandas==1.5.0rc0 Please report any issues with the release candidate on th | Low | 8/24/2022 |
| v1.4.3 | This is a patch release in the 1.4.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.4.3/whatsnew/v1.4.3.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas i | Low | 6/23/2022 |
| v1.4.2 | This is a patch release in the 1.4.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.4.2/whatsnew/v1.4.2.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas i | Low | 4/2/2022 |
| v1.4.1 | This is the first patch release in the 1.4.x series and includes some regression fixes and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.4.1/whatsnew/v1.4.1.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on | Low | 2/12/2022 |
| v1.4.0 | This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.4.0/whatsnew/v1.4.0.html) for a list of all the changes. pandas 1.4.0 supports Python 3.8 and higher. The release will be available on the defaults and conda-forge channels: conda install -c conda-forge pandas Or via PyPI: python3 -m pip install --upgrade pandas Plea | Low | 1/22/2022 |
| v1.4.0rc0 | We are pleased to announce a release candidate for pandas 1.4.0. If all goes well, we'll release pandas 1.4.0 in about two weeks. See the [whatsnew][0] for a list of all the changes. pandas 1.4.0 supports Python 3.8 and higher. The release will be available on conda-forge and PyPI. The release can be installed from PyPI python -m pip install --upgrade --pre pandas==1.4.0rc0 Or from conda-forge conda install -c conda-forge/label/pandas_rc pandas==1.4.0rc0 Please repor | Low | 1/6/2022 |
| v1.3.5 | This is a patch release in the 1.3.x series and includes some regression fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.3.5/whatsnew/v1.3.5.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas issue tra | Low | 12/12/2021 |
| v1.3.4 | This is a patch release in the 1.3.x series and includes some regression fixes and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.3.4/whatsnew/v1.3.4.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pa | Low | 10/17/2021 |
| v1.3.3 | This is a patch release in the 1.3.x series and includes some regression fixes and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.3.3/whatsnew/v1.3.3.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pa | Low | 9/12/2021 |
| v1.3.2 | This is a patch release in the 1.3.x series and includes some regression fixes and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.3.2/whatsnew/v1.3.2.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pa | Low | 8/15/2021 |
| v1.3.1 | This is the first patch release in the 1.3.x series and includes some regression fixes and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.3.1/whatsnew/v1.3.1.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on | Low | 7/25/2021 |
| v1.3.0 | This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.3.0/whatsnew/v1.3.0.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install -c conda-forge pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the | Low | 7/2/2021 |
| v1.2.5 | This is a patch release in the 1.2.x series and includes some regression fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.2.5/whatsnew/v1.2.5.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas issue tra | Low | 6/22/2021 |
| v1.3.0rc1 | We are pleased to announce a release candidate for pandas 1.3.0. If all goes well, we'll release pandas 1.3.0 in about two weeks. See the [whatsnew][0] for a list of all the changes. The release will be available on conda-forge and PyPI. The release can be installed from PyPI python -m pip install --upgrade --pre pandas==1.3.0rc1 Or from conda-forge conda install -c conda-forge/label/pandas_rc pandas==1.3.0rc1 Please report any issues with the release candidate on th | Low | 6/13/2021 |
| v1.2.4 | This is a patch release in the 1.2.x series and includes some regression fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.2.4/whatsnew/v1.2.4.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas issue tra | Low | 4/12/2021 |
| v1.2.3 | This is a patch release in the 1.2.x series and includes some regression fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.2.3/whatsnew/v1.2.3.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas issue tra | Low | 3/2/2021 |
| v1.2.2 | This is a patch release in the 1.2.x series and includes some regression fixes and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.2.2/whatsnew/v1.2.2.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [p | Low | 2/9/2021 |
| v1.2.1 | This is the first patch release in the 1.2.x series and includes some regression fixes and bug fixes. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/1.2.1/whatsnew/v1.2.1.html) for a list of all the changes. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release o | Low | 1/20/2021 |
