Skip to content

Commit

Permalink
Merge branch 'master' into array_ufunc_nov
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgsavage authored Aug 16, 2023
2 parents f289b8a + c43c18b commit aa92f24
Show file tree
Hide file tree
Showing 8 changed files with 411 additions and 72 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-pint-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
matrix:
python-version: [3.9, "3.10", "3.11"]
numpy: ["numpy>=1.20.3,<2.0.0"]
pandas: ["pandas==1.5.2", ]
pint: ["pint>=0.20.1"]
pandas: ["pandas==2.0.2", ]
pint: ["pint>=0.21.1"]

runs-on: ubuntu-latest

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-pint-pre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
matrix:
python-version: [3.9, "3.10", "3.11"]
numpy: ["numpy>=1.20.3,<2.0.0"]
pandas: ["pandas==1.5.2", ]
pint: ["pint>=0.20.1"]
pandas: ["pandas==2.0.2", ]
pint: ["pint>=0.21.1"]

runs-on: ubuntu-latest

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
matrix:
python-version: [3.9, "3.10", "3.11"]
numpy: ["numpy>=1.20.3,<2.0.0"]
pandas: ["pandas==1.5.2","pandas==2.0.2", ]
pint: ["pint==0.21.1", "pint==0.22"]
pandas: ["pandas==2.0.2", "pandas==2.1.0rc0" ]
pint: ["pint>=0.21.1", "pint==0.22"]

runs-on: ubuntu-latest

Expand Down
19 changes: 17 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
pint-pandas Changelog
=====================

0.4 (unreleased)
0.5 (unreleased)
----------------

<<<<<<< HEAD
- Support for Pandas version 2.1.0. #196
- Support for dtype-preserving `PintArray.map` for both Pandas 2.0.2 and Pandas 2.1. #196
- Support for <NA> values in columns with integer magnitudes
- Support for magnitudes of any type, such as complex128 or tuples #146
- Support for pandas 2.0, allowing `.cumsum, .cummax, .cummin` methods for `Series` and `DataFrame`. #186
- Minimum Pint version is 0.21
- Minimum Pandas vesrion is 2.0
- Support for unit registries with `force_ndarray_like = True`. #165
- A DataFrame/Series.pint.convert_object_dtype() function has been added to create PintArrays from Series of quantities.

0.4 (2023-05-23)
----------------

- Support for <NA> values in columns with integer magnitudes
- Support for magnitudes of any type, such as complex128 or tuples #146
- Support for Pint 0.21 #168, #179
- Cast to `numpy.ndarray` in `PintArray._reduce` if needed to use `nanops` functions
- Support for unit registries with `force_ndarray_like = True`. #165
- Minimum Pint version is 0.21
- Minimum Pandas vesrion is 1.6

0.3 (2022-11-14)
----------------
Expand Down
Loading

0 comments on commit aa92f24

Please sign in to comment.