Skip to content

Commit

Permalink
change workflow action to install pyradiomics specific version first …
Browse files Browse the repository at this point in the history
…without relying on pep 517 compliance

update referenced version of pyradiomics to the one that gets pre-installed (avoid conflicts and rebuild attempt)
  • Loading branch information
sjswerdloff committed Aug 22, 2023
1 parent 3860a23 commit 15595b7
Show file tree
Hide file tree
Showing 3 changed files with 164 additions and 164 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,18 @@ jobs:
sudo apt-get update
sudo apt-get install plastimatch
- name: Workaround Install pyradiomics (no-use-pep517)
# https://github.com/AIM-Harvard/pyradiomics/issues/653#issuecomment-1245039225
# pyradiomics 3.1.0 has a metadata mismatch
run: |
poetry run pip install pyradiomics==3.0.1
- name: Install dependencies
run: |
# python -m pip install --upgrade pip wheel setuptools
poetry install --no-root
- name: Workaround Install pyradiomics (no-use-pep517)
# https://github.com/AIM-Harvard/pyradiomics/issues/653#issuecomment-1245039225
run: |
poetry run pip install pyradiomics
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
Loading

0 comments on commit 15595b7

Please sign in to comment.