From 3322e6b8dac2b8d7f061a2d2ce7440ab91f40cb9 Mon Sep 17 00:00:00 2001 From: Sylvain MARIE Date: Thu, 21 Dec 2023 12:59:40 +0100 Subject: [PATCH] Reverted mayavi installation mode as it was not working with GHA. --- noxfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 1684a87a..6ebdc8a5 100644 --- a/noxfile.py +++ b/noxfile.py @@ -217,7 +217,8 @@ def flake8(session: PowerSession): ] MKDOCS_GALLERY_EXAMPLES_MAYAVI_REQS = [ "PyQt5", # PyQt is required for the mayavi backend - "mayavi>=4.7.4", # we want mayavi>=4.7.4 when available due to https://github.com/enthought/mayavi/pull/1272 + # 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 ]