Skip to content

Commit

Permalink
Bump version 0.2.3 (#258)
Browse files Browse the repository at this point in the history
* Bump version 0.2.3

* Fix issue in init

* Removing typing as a dependency
  • Loading branch information
devin-petersohn authored Nov 11, 2018
1 parent c138dda commit afff86c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<a href="https://travis-ci.com/modin-project/modin"><img alt="" src="https://travis-ci.com/modin-project/modin.svg?branch=master"></a>
<a href="https://modin.readthedocs.io/en/latest/?badge=latest"><img alt="" src="https://readthedocs.org/projects/modin/badge/?version=latest"></a>
<a href="https://modin.readthedocs.io/en/latest/pandas_supported.html"><img src="https://img.shields.io/badge/pandas%20api%20coverage-71.77%25-orange.svg"></a>
<a href="https://pypi.org/project/modin/"><img alt="" src="https://img.shields.io/badge/pypi-0.2.2-blue.svg"></a>
<a href="https://pypi.org/project/modin/"><img alt="" src="https://img.shields.io/badge/pypi-0.2.3-blue.svg"></a>
</p>

<p align="center"><b>To use Modin, replace the pandas import:</b></p>
Expand Down
2 changes: 1 addition & 1 deletion modin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_partition_format():
return "Pandas"


__version__ = "0.2.2"
__version__ = "0.2.3"
__execution_engine__ = get_execution_engine()
__partition_format__ = get_partition_format()

Expand Down
1 change: 0 additions & 1 deletion modin/pandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@
"NaT",
"PeriodIndex",
"Categorical",
"__git_revision__",
"__version__",
]

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

setup(
name="modin",
version="0.2.2",
version="0.2.3",
description="Modin: Pandas on Ray - Make your pandas code run faster with "
"a single line of code change.",
packages=find_packages(),
url="https://github.com/modin-project/modin",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["pandas==0.23.4", "ray==0.5.3", "typing"])
install_requires=["pandas==0.23.4", "ray==0.5.3"])

0 comments on commit afff86c

Please sign in to comment.