Skip to content

Commit

Permalink
FIX-#2556: fix modin package installation
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev committed Dec 17, 2020
1 parent a0e3e15 commit ab0c03a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions modin/experimental/cloud/rayscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ def _conda_requirements(self):
reqs.append(self._get_modin_version())

reqs.extend(self.add_conda_packages)
else:
reqs.append(self._get_modin_version())

# this is needed, for example, for dependencies that
# looks like: "scikit-learn>=0.23"
Expand Down
4 changes: 3 additions & 1 deletion modin/experimental/cloud/test/test_cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,9 @@ def test_create_or_update_cluster(make_ray_cluster, make_create_or_update_cluste
],
)
def test_update_conda_requirements(
make_ray_cluster, setup_commands_source, user_packages,
make_ray_cluster,
setup_commands_source,
user_packages,
):
fake_version = namedtuple("FakeVersion", "major minor micro")(7, 12, 45)
with mock.patch("sys.version_info", fake_version):
Expand Down

0 comments on commit ab0c03a

Please sign in to comment.