Skip to content

Commit

Permalink
Fix failing workflows (#563)
Browse files Browse the repository at this point in the history
* Fix syntax error in workflow
* Fix documentation workflow
* Fix relative import
  • Loading branch information
stefsmeets authored Apr 19, 2023
1 parent 9c0b6a3 commit 24602a3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-python-and-package
extras-require: docs
with:
extras-require: docs
- name: Install pandoc using apt
run: sudo apt install pandoc
- name: Build documentation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fair-software.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
verify_pull_request:
name: "fair-software"
runs-on: ubuntu-latest
if: ${{ (github.event_name == 'pull_request') and (github.event.pull_request.draft == false) }}
if: ${{ (github.event_name == 'pull_request') && (github.event.pull_request.draft == false) }}
steps:
- uses: fair-software/[email protected]
name: Measure compliance with fair-software.eu recommendations
Expand Down
2 changes: 1 addition & 1 deletion dianna/methods/kernelshap.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import shap
import skimage.segmentation
from dianna import utils
from .._logging_utils import LoggingContext
from dianna._logging_utils import LoggingContext


class KERNELSHAPImage:
Expand Down

0 comments on commit 24602a3

Please sign in to comment.