Skip to content
Snippets Groups Projects
Commit 1cc49e72 authored by Romina Baila's avatar Romina Baila Committed by Eleni Mathioulaki
Browse files

fix(py-pythreejs): set npm cache folder to a writable location

parent db405c56
No related branches found
No related tags found
2 merge requests!676create new experimental release,!665Add missing tvb-widgets dependencies
Pipeline #61385 waiting for manual action with stage
in 8 hours, 26 minutes, and 38 seconds
...@@ -35,3 +35,7 @@ class PyPythreejs(PythonPackage): ...@@ -35,3 +35,7 @@ class PyPythreejs(PythonPackage):
depends_on("py-ipywidgets@7.2.1:", type=("build", "run")) depends_on("py-ipywidgets@7.2.1:", type=("build", "run"))
depends_on("py-ipydatawidgets@1.1.1:", type=("build", "run")) depends_on("py-ipydatawidgets@1.1.1:", type=("build", "run"))
depends_on("py-jupyter-core", type=("build", "run")) depends_on("py-jupyter-core", type=("build", "run"))
def setup_build_environment(self, env):
import os
env.set("npm_config_cache", os.path.join(self.stage.path, "npm-cache"))
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment