Skip to content

Commit

Permalink
TEST-#7125: Explicitly install modin in ci tests (#7126)
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
  • Loading branch information
dchigarev authored Mar 26, 2024
1 parent a616e4c commit 4380eb7
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/actions/mamba-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,7 @@ runs:
# we set use-only-tar-bz2 to false in order for conda to properly find new packages to be installed
# for more info see https://github.com/conda-incubator/setup-miniconda/issues/264
use-only-tar-bz2: false
- shell: bash -l {0}
run: |
conda run -n ${{ inputs.activate-environment }} pip install .
conda list -n ${{ inputs.activate-environment }}
2 changes: 1 addition & 1 deletion docs/requirements-doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ recommonmark
sphinx<6.0.0
sphinx-click
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
ray[default]>=1.13.0,!=2.5.0,!=2.10.0
ray[default]>=1.13.0,!=2.5.0
# Override to latest version of modin-spreadsheet
git+https://github.com/modin-project/modin-spreadsheet.git@49ffd89f683f54c311867d602c55443fb11bf2a5
sphinxcontrib_plantuml
Expand Down
2 changes: 1 addition & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:

# optional dependencies
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
- ray-default>=1.13.0,!=2.5.0,!=2.10.0
- ray-default>=1.13.0,!=2.5.0
- pyarrow>=7.0.0
# workaround for https://github.com/conda/conda/issues/11744
- grpcio!=1.45.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ setup_commands:
# To run the nightly version of ray (as opposed to the latest), either use a rayproject docker image
# that has the "nightly" (e.g. "rayproject/ray-ml:nightly-gpu") or uncomment the following line:
# - pip install -U "ray[default] @ https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-3.0.0.dev0-cp37-cp37m-manylinux2014_x86_64.whl"
- conda create -n "modin" -c conda-forge modin "ray-default">=1.13.0,!=2.5.0,!=2.10.0 -y
- conda create -n "modin" -c conda-forge modin "ray-default">=1.13.0,!=2.5.0 -y
- conda activate modin && pip install -U fsspec>=2022.11.0 boto3
- echo "conda activate modin" >> ~/.bashrc
- wget https://modin-datasets.intel.com/testing/yellow_tripdata_2015-01.csv
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ psutil>=5.8.0

## optional dependencies
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
ray[default]>=1.13.0,!=2.5.0,!=2.10.0
ray[default]>=1.13.0,!=2.5.0
pyarrow>=7.0.0
dask[complete]>=2.22.0
distributed>=2.22.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

dask_deps = ["dask>=2.22.0", "distributed>=2.22.0"]
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
ray_deps = ["ray[default]>=1.13.0,!=2.5.0,!=2.10.0", "pyarrow>=7.0.0"]
ray_deps = ["ray[default]>=1.13.0,!=2.5.0", "pyarrow>=7.0.0"]
mpi_deps = ["unidist[mpi]>=0.2.1"]
spreadsheet_deps = ["modin-spreadsheet>=0.1.0"]
# Currently, Modin does not include `mpi` option in `all`.
Expand Down

0 comments on commit 4380eb7

Please sign in to comment.