diff --git a/README.md b/README.md index bc0b9031930..619fe072ab7 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ - +
To use Modin, replace the pandas import:
diff --git a/modin/__init__.py b/modin/__init__.py index 5e9b986e351..757bea79bc8 100644 --- a/modin/__init__.py +++ b/modin/__init__.py @@ -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() diff --git a/modin/pandas/__init__.py b/modin/pandas/__init__.py index f0f0120fed4..5d6bbbc4eb1 100644 --- a/modin/pandas/__init__.py +++ b/modin/pandas/__init__.py @@ -135,7 +135,6 @@ "NaT", "PeriodIndex", "Categorical", - "__git_revision__", "__version__", ] diff --git a/setup.py b/setup.py index 534d4d1a0bc..73d2fb5b554 100644 --- a/setup.py +++ b/setup.py @@ -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"])