Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Commit

Permalink
Changes circleci installs to do a local install
Browse files Browse the repository at this point in the history
Since the local install will be up to date with whatever
extra dependencies ray, dask, spark might require.
  • Loading branch information
skrawcz committed Jun 21, 2022
1 parent 489910f commit b5e65de
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,7 @@ jobs:
python --version
pip --version
pip install -r requirements-test.txt
pip install -r requirements.txt
pip install "dask[complete]"
pip install -e ".[dask]"
# run tests!
- run:
Expand All @@ -147,8 +146,7 @@ jobs:
python --version
pip --version
pip install -r requirements-test.txt
pip install -r requirements.txt
pip install "dask[complete]"
pip install -e ".[dask]"
# run tests!
- run:
Expand All @@ -170,8 +168,7 @@ jobs:
python --version
pip --version
pip install -r requirements-test.txt
pip install -r requirements.txt
pip install ray
pip install -e ".[ray]"
# run tests!
- run:
Expand All @@ -197,8 +194,7 @@ jobs:
python3.8 --version
pip3.8 --version
pip3.8 install -r requirements-test.txt
pip3.8 install -r requirements.txt
pip3.8 install pyspark[pandas_on_spark] # note bdist will error, but things install fine enough to run!
pip3.8 install -e ".[pyspark]" # note bdist will error, but things install fine enough to run!
# run tests!
- run:
Expand Down

0 comments on commit b5e65de

Please sign in to comment.