Skip to content

ENH make Random*Sampler accept dask array and dataframe #777

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
iter
  • Loading branch information
glemaitre committed Nov 5, 2020
commit d26da3cd7980bf98511ac4daf35257d8468a0f85
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
PYTHON_VERSION: '3.7'
INSTALL_MKL: 'true'
PANDAS_VERSION: '*'
DASK_VERSION: '*'
KERAS_VERSION: '*'
COVERAGE: 'true'
JOBLIB_VERSION: '*'
Expand All @@ -52,6 +53,7 @@ jobs:
DISTRIB: 'conda'
PYTHON_VERSION: '3.8'
PANDAS_VERSION: '*'
DASK_VERSION: '*'
JOBLIB_VERSION: '*'
INSTALL_MKL: 'true'
TENSORFLOW_VERSION: '*'
Expand Down
3 changes: 2 additions & 1 deletion build_tools/azure/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,10 @@ elif [[ "$DISTRIB" == "conda-pip-latest" ]]; then
make_conda "python=$PYTHON_VERSION"
python -m pip install -U pip
python -m pip install numpy scipy joblib cython
python -m pip install pandas==$PANDAS_VERSION
python -m pip install dask==$DASK_VERSION
python -m pip install scikit-learn
python -m pip install pytest==$PYTEST_VERSION pytest-cov pytest-xdist
python -m pip install pandas
fi

if [[ "$COVERAGE" == "true" ]]; then
Expand Down