From 1eb73da1062f66ede33eb7e20bfce8ec09d510b6 Mon Sep 17 00:00:00 2001 From: Umberto Zerbinati Date: Wed, 6 Nov 2024 14:11:07 +0000 Subject: [PATCH] ngsPETSc "stable" release is coming ! Signed-off-by: Umberto Zerbinati --- scripts/firedrake-install | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/scripts/firedrake-install b/scripts/firedrake-install index c167f75ffc..ca9b620ea2 100755 --- a/scripts/firedrake-install +++ b/scripts/firedrake-install @@ -1375,23 +1375,6 @@ def build_and_install_slepc(): git_clone(url) -def build_and_install_netgen(): - log.info("Installing NGSolve/Netgen.") - run_pip(["install", "netgen-mesher"]) - log.info("Installing ngsPETSc.") - url = "git+https://github.com/NGSolve/ngsPETSc.git@main" - ngsPETSc_changed = False - if os.path.exists("ngsPETSc"): - ngsPETSc_changed |= git_update("ngsPETSc") - else: - git_clone(url) - ngsPETSc_changed = True - if ngsPETSc_changed: - with directory("ngsPETSc"): - with environment(NGSPETSC_NO_INSTALL_REQUIRED="ON"): - check_call([python, "-m", "pip", "install", "-e", "."]) - - def install_documentation_dependencies(): """Just install the required dependencies. There are no provenance issues here so no need to record this in the configuration dict.""" @@ -2089,7 +2072,7 @@ with environment(**compiler_env): install("slepc4py/") if options["netgen"]: - build_and_install_netgen() + packages += ["ngsPETSc"] with pipargs("--no-deps"): if options["opencascade"]: