Skip to content

Commit

Permalink
FEAT-#1861: Use cloudpickle library for experimental.cloud features (#…
Browse files Browse the repository at this point in the history
…1862)

Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev authored Jul 30, 2020
1 parent 03a919e commit a244a56
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modin/experimental/cloud/ray-autoscaler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ setup_commands:
conda activate modin
conda install python==3.7.6
pip install modin "ray==0.8.6"
pip install modin "ray==0.8.6" cloudpickle
echo 'export MODIN_RAY_CLUSTER=True' >> ~/.bashrc
# Consider uncommenting these if you also want to run apt-get commands during setup
Expand Down
2 changes: 1 addition & 1 deletion modin/experimental/cloud/rpyc_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os

import rpyc
from rpyc.lib.compat import pickle
import cloudpickle as pickle
from rpyc.lib import get_methods

from rpyc.core import netref, AsyncResult, consts
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ matplotlib<=3.2.2
sqlalchemy
msgpack<1.0
pandas_gbq
cloudpickle
1 change: 1 addition & 0 deletions requirements/env_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ dependencies:
- matplotlib
- sqlalchemy
- msgpack<1.0
- cloudpickle

0 comments on commit a244a56

Please sign in to comment.