Skip to content

Commit

Permalink
add setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmish committed Sep 25, 2023
1 parent 051e9f5 commit d5f858c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
- name: Install lightfm
run: pip install -U pip setuptools
run: python -m pip install --no-use-pep517 'lightfm<2'
- name: Install package
run: pip install .[dev]
- name: make test-devel
Expand All @@ -38,8 +39,9 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
- name: Install lightfm
run: pip install -U pip setuptools
run: python -m pip install --no-use-pep517 'lightfm<2'
- name: Install package and dependencies
run: pip install rundoc .[mlprimitives]
- name: make test-readme
Expand Down Expand Up @@ -74,8 +76,9 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
- name: Install lightfm
run: pip install -U pip setuptools
run: python -m pip install --no-use-pep517 'lightfm<2'
- name: Install package and dependencies
run: pip install .[test]
- name: make test-mlprimitives
Expand All @@ -96,8 +99,9 @@ jobs:
- if: matrix.os == 'ubuntu-20.04'
name: Install dependencies - Ubuntu
run: sudo apt-get install graphviz
- name: Update pip
- name: Install lightfm
run: pip install -U pip setuptools
run: python -m pip install --no-use-pep517 'lightfm<2'
- name: Install package and dependencies
run: pip install .[examples]
- name: make test-tutorials
Expand Down

0 comments on commit d5f858c

Please sign in to comment.