Skip to content

Commit

Permalink
Backport Release v0.11.2 (#1271)
Browse files Browse the repository at this point in the history
* Update version

* Update release notes

* Fix pandas replace call for pandas version 1.4.0

* restrict koalas' pandas version

* Add note for pandas-related changes

* fix docs build
  • Loading branch information
tamargrey authored Jan 28, 2022
1 parent 9275ab7 commit 21f995d
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
13 changes: 12 additions & 1 deletion docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,25 @@ Release Notes
==============
* Enhancements
* Fixes
* Set high and low bounds to the max and min values if no outliers are present in ``box_plot_dict`` (:pr:`1269`)
* Changes
* Documentation Changes
* Testing Changes
.. Thanks to the following people for contributing to this release:
v0.11.2 Jan 28, 2022
====================
* Fixes
* Set high and low bounds to the max and min values if no outliers are present in ``box_plot_dict`` (:pr:`1269`)

Thanks to the following people for contributing to this release:
:user:`tamargrey`

Note
++++
* The pandas version for Koalas has been restricted, and a change was made to a pandas ``replace`` call to account for
the recent pandas 1.4.0 release.

v0.11.1 Jan 4, 2022
===================
* Changes
Expand Down
1 change: 1 addition & 0 deletions koalas-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
pyspark>=3.0.0,<3.2.0
koalas>=1.8.0
pandas<1.4.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
author='Alteryx, Inc.',
author_email='[email protected]',
license='BSD 3-clause',
version='0.11.1',
version='0.11.2',
description='a two-dimensional data object with labeled axes and typing information',
url='https://github.com/alteryx/woodwork/',
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion woodwork/tests/accessor/test_column_accessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ def test_accessor_shallow_equality(sample_series):
assert not metadata_col.ww.__eq__(diff_metadata_col.ww, deep=True)

schema = metadata_col.ww.schema
diff_data_col = metadata_col.replace({"a": "1"})
diff_data_col = metadata_col.replace(to_replace="a", value="1")
# dtype gets changed to object in replace
diff_data_col = diff_data_col.astype("string")

Expand Down
2 changes: 1 addition & 1 deletion woodwork/tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.11.1"
assert __version__ == "0.11.2"
2 changes: 1 addition & 1 deletion woodwork/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.11.1"
__version__ = "0.11.2"

0 comments on commit 21f995d

Please sign in to comment.