Skip to content

Commit afff86c

Browse files
Bump version 0.2.3 (#258)
* Bump version 0.2.3 * Fix issue in init * Removing typing as a dependency
1 parent c138dda commit afff86c

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<a href="https://travis-ci.com/modin-project/modin"><img alt="" src="https://travis-ci.com/modin-project/modin.svg?branch=master"></a>
66
<a href="https://modin.readthedocs.io/en/latest/?badge=latest"><img alt="" src="https://readthedocs.org/projects/modin/badge/?version=latest"></a>
77
<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>
8-
<a href="https://pypi.org/project/modin/"><img alt="" src="https://img.shields.io/badge/pypi-0.2.2-blue.svg"></a>
8+
<a href="https://pypi.org/project/modin/"><img alt="" src="https://img.shields.io/badge/pypi-0.2.3-blue.svg"></a>
99
</p>
1010

1111
<p align="center"><b>To use Modin, replace the pandas import:</b></p>

modin/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def get_partition_format():
1818
return "Pandas"
1919

2020

21-
__version__ = "0.2.2"
21+
__version__ = "0.2.3"
2222
__execution_engine__ = get_execution_engine()
2323
__partition_format__ = get_partition_format()
2424

modin/pandas/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@
135135
"NaT",
136136
"PeriodIndex",
137137
"Categorical",
138-
"__git_revision__",
139138
"__version__",
140139
]
141140

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

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

0 commit comments

Comments
 (0)