Skip to content

Commit

Permalink
Fixed GHA warning and trying to fix mayavi issue with configobj
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylvain MARIE committed Sep 4, 2024
1 parent e449f16 commit 064a386
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: List 'tests' nox sessions and required python versions
id: set-matrix
run: echo "::set-output name=matrix::$(nox --json -l -s tests -v)"
run: echo "matrix=$(nox --json -l -s tests -v)" >> $GITHUB_OUTPUT

outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }} # save nox sessions list to outputs
Expand Down
3 changes: 2 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ def flake8(session):
MKDOCS_GALLERY_EXAMPLES_MAYAVI_REQS = [
"PyQt5", # PyQt is required for the mayavi backend
# Note: installing Mayavi from PyPi does not seem to work on GHA CI.
"git+https://github.com/enthought/mayavi.git", # we want mayavi>=4.7.4 when available due to https://github.com/enthought/mayavi/pull/1272
#"git+https://github.com/enthought/mayavi.git", # we want mayavi>=4.7.4 when available due to https://github.com/enthought/mayavi/pull/1272
"mayavi"
]


Expand Down

0 comments on commit 064a386

Please sign in to comment.