Skip to content

Commit

Permalink
Update build.yml (#279)
Browse files Browse the repository at this point in the history
* restore `python setup.py install`, even though this says it is deprecated
  • Loading branch information
amoodie committed Dec 5, 2023
1 parent f5c4f8f commit b07965e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements-test.txt
pip install -r requirements.txt
- name: Install pyDeltaRCM
run: |
python setup.py install
- name: Test with pytest
run: |
python -m pytest --mpl --mpl-baseline-path=tests/imgs_baseline
Expand Down Expand Up @@ -62,6 +65,9 @@ jobs:
python -m pip install --upgrade pip
pip install pytest pytest-cov pytest-mpl coveralls
pip install -r requirements.txt
- name: Install pyDeltaRCM
run: |
python setup.py install
- name: Disable jitted for coverage
run: |
echo "DISABLE_JIT: 1" > .numba_config.yaml
Expand Down Expand Up @@ -98,7 +104,7 @@ jobs:
sudo apt update -y && sudo apt install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended dvipng
- name: Install pyDeltaRCM
run: |
pip install .
python setup.py install
- name: Build and test documentation
run: |
(cd docs && make docs)
Expand Down

0 comments on commit b07965e

Please sign in to comment.