Skip to content

Commit

Permalink
fixes for min dependency checker
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Parsons committed May 2, 2024
1 parent 1bb0b60 commit 67b0688
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests_with_latest_deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install featuretools with test requirements
run: |
python -m pip install -e unpacked_sdist/
python -m pip install -e unpacked_sdist/[test]
python -m pip install -e unpacked_sdist/[test,dask]
- if: ${{ matrix.python_version == 3.9 }}
name: Generate coverage args
run: echo "coverage_args=--cov=featuretools --cov-config=../pyproject.toml --cov-report=xml:../coverage.xml" >> $GITHUB_ENV
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
conda config --add channels conda-forge
conda install -q -y -c conda-forge python-graphviz graphviz
python -m pip install --upgrade pip
python -m pip install .[test]
python -m pip install .[test,dask]
- name: Run unit tests
run: |
. $env:USERPROFILE\Miniconda3\shell\condabin\conda-hook.ps1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_with_woodwork_main_branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
sudo apt update && sudo apt install -y graphviz
- name: Install Woodwork & Featuretools - test requirements
run: |
python -m pip install -e unpacked_sdist/[test]
python -m pip install -e unpacked_sdist/[test,dask]
python -m pip uninstall -y woodwork
python -m pip install https://github.com/alteryx/woodwork/archive/main.zip
- name: Log test run info
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ test = [
"smart-open >= 5.0.0",
"urllib3 >= 1.26.18",
"pytest-timeout >= 2.1.0",
"featuretools[dask]"
]
dask = [
"dask[dataframe] >= 2023.2.0",
Expand Down

0 comments on commit 67b0688

Please sign in to comment.