-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix select bug, add col ops * add modin * add modin * fix tests * fix tests * add dask * fix tests * update tests * fix lint * update dask engine config
- Loading branch information
Han Wang
authored
May 11, 2020
1 parent
f364c36
commit 86e2f58
Showing
4 changed files
with
44 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from triad.collections.dict import ParamDict | ||
|
||
DEFAULT_CONFIG = ParamDict({"fugue.dask.dataframe.default.partitions": 16}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from setuptools import setup, find_packages | ||
|
||
VERSION = "0.1.2" | ||
VERSION = "0.1.5" | ||
|
||
with open("README.md") as f: | ||
LONG_DESCRIPTION = f.read() | ||
|
@@ -17,8 +17,11 @@ | |
author_email="[email protected]", | ||
keywords="distributed spark sql", | ||
url="http://github.com/goodwanghan/fugue", | ||
install_requires=["triad>=0.2.7", "adagio>=0.1.2", "fs", "sqlalchemy"], | ||
extras_require={"modin": ["modin[ray]"], "dask": ["dask[dataframe]"]}, | ||
install_requires=["triad>=0.2.8", "adagio>=0.1.2", "fs", "sqlalchemy"], | ||
extras_require={ | ||
"modin": ["modin[ray]"], | ||
"dask": ["dask[dataframe]", "cloudpickle>1.4.0"], | ||
}, | ||
classifiers=[ | ||
# "3 - Alpha", "4 - Beta" or "5 - Production/Stable" | ||
"Development Status :: 3 - Alpha", | ||
|