Skip to content

Commit

Permalink
Release 7.10.1b1
Browse files Browse the repository at this point in the history
  • Loading branch information
sethmlarson authored Jan 12, 2021
1 parent 2635462 commit 985afe7
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 10 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@
Changelog
=========

7.10.1b1 (2021-01-12)
---------------------

Added
^^^^^

* Added support for Pandas 1.2.0 (`#336`_)

* Added ``DataFrame.mode()`` and ``Series.mode()`` aggregation (`#323`_, contributed by `@V1NAY8`_)

* Added support for ``pd.set_option("display.max_rows", None)``
(`#308`_, contributed by `@V1NAY8`_)

* Added Elasticsearch storage usage to ``df.info()`` (`#321`_, contributed by `@V1NAY8`_)

Removed
^^^^^^^

* Removed deprecated aliases ``read_es``, ``read_csv``, ``DataFrame.info_es``,
and ``MLModel(overwrite=True)`` (`#331`_, contributed by `@V1NAY8`_)

.. _#336: https://github.com/elastic/eland/pull/336
.. _#331: https://github.com/elastic/eland/pull/331
.. _#323: https://github.com/elastic/eland/pull/323
.. _#321: https://github.com/elastic/eland/pull/321
.. _#308: https://github.com/elastic/eland/pull/308


7.10.0b1 (2020-10-29)
---------------------

Expand Down
22 changes: 14 additions & 8 deletions docs/sphinx/reference/supported_apis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.DataFrame.first_valid_index()`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.flags`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.floordiv()`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.from_dict()`` | No |
Expand Down Expand Up @@ -250,7 +252,7 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.DataFrame.mod()`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.mode()`` | No |
| ``ed.DataFrame.mode()`` | **Yes** |
+---------------------------------------+------------+
| ``ed.DataFrame.mul()`` | No |
+---------------------------------------+------------+
Expand Down Expand Up @@ -338,6 +340,8 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.DataFrame.set_axis()`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.set_flags()`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.set_index()`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.shape`` | **Yes** |
Expand Down Expand Up @@ -460,6 +464,8 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.DataFrame.__array_priority__`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.__array_ufunc__()`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.__array_wrap__()`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.__bool__()`` | No |
Expand All @@ -478,7 +484,7 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.DataFrame.__dir__()`` | **Yes** |
+---------------------------------------+------------+
| ``ed.DataFrame.__div__()`` | No |
| ``ed.DataFrame.__divmod__()`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.__doc__`` | **Yes** |
+---------------------------------------+------------+
Expand Down Expand Up @@ -564,7 +570,7 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.DataFrame.__rand__()`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.__rdiv__()`` | No |
| ``ed.DataFrame.__rdivmod__()`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.__reduce__`` | **Yes** |
+---------------------------------------+------------+
Expand Down Expand Up @@ -744,6 +750,8 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.Series.first_valid_index()`` | No |
+---------------------------------------+------------+
| ``ed.Series.flags`` | No |
+---------------------------------------+------------+
| ``ed.Series.floordiv()`` | **Yes** |
+---------------------------------------+------------+
| ``ed.Series.ge()`` | No |
Expand Down Expand Up @@ -828,7 +836,7 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.Series.mod()`` | **Yes** |
+---------------------------------------+------------+
| ``ed.Series.mode()`` | No |
| ``ed.Series.mode()`` | **Yes** |
+---------------------------------------+------------+
| ``ed.Series.mul()`` | **Yes** |
+---------------------------------------+------------+
Expand Down Expand Up @@ -920,6 +928,8 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.Series.set_axis()`` | No |
+---------------------------------------+------------+
| ``ed.Series.set_flags()`` | No |
+---------------------------------------+------------+
| ``ed.Series.shape`` | **Yes** |
+---------------------------------------+------------+
| ``ed.Series.shift()`` | No |
Expand Down Expand Up @@ -1054,8 +1064,6 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.Series.__dir__()`` | **Yes** |
+---------------------------------------+------------+
| ``ed.Series.__div__()`` | **Yes** |
+---------------------------------------+------------+
| ``ed.Series.__divmod__()`` | No |
+---------------------------------------+------------+
| ``ed.Series.__doc__`` | **Yes** |
Expand Down Expand Up @@ -1148,8 +1156,6 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.Series.__rand__()`` | No |
+---------------------------------------+------------+
| ``ed.Series.__rdiv__()`` | **Yes** |
+---------------------------------------+------------+
| ``ed.Series.__rdivmod__()`` | No |
+---------------------------------------+------------+
| ``ed.Series.__reduce__`` | **Yes** |
Expand Down
2 changes: 1 addition & 1 deletion eland/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
__title__ = "eland"
__description__ = "Python Client and Toolkit for DataFrames, Big Data, Machine Learning and ETL in Elasticsearch"
__url__ = "https://github.com/elastic/eland"
__version__ = "7.10.0b1"
__version__ = "7.10.1b1"
__author__ = "Steve Dodson"
__author_email__ = "[email protected]"
__maintainer__ = "Seth Michael Larson"
Expand Down
2 changes: 1 addition & 1 deletion utils/generate-supported-apis.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

import eland

api_docs_dir = Path(__file__).absolute().parent.parent / "docs/source/reference/api"
api_docs_dir = Path(__file__).absolute().parent.parent / "docs/sphinx/reference/api"
is_supported = []
supported_attr = re.compile(
r"(?:[a-zA-Z0-9][a-zA-Z0-9_]*|__[a-zA-Z0-9][a-zA-Z0-9_]*__)"
Expand Down

0 comments on commit 985afe7

Please sign in to comment.