Skip to content

Commit

Permalink
Merge pull request spack#168 from climbfuji/feature/jedi_tools_no_aws…
Browse files Browse the repository at this point in the history
…_pcluster

Don't install aws-parallelcluster with spack, need newer version with very complicated dependencies
  • Loading branch information
climbfuji authored Sep 8, 2022
2 parents f9ad16f + 15f0df8 commit 0020528
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ class JediToolsEnv(BundlePackage):
variant("latex", default=False, description="Enable building LaTeX documentation with Sphinx")

depends_on("awscli", type="run")
depends_on("aws-parallelcluster", type="run")
# Only old versions - new versions have terrible dependencies
# depends_on("aws-parallelcluster", type="run")
# npm is needed for aws-parallelcluster, even when installed via pip in venv
depends_on("npm", type="run")
depends_on("py-click", type="run")
depends_on("py-openpyxl", type="run")
depends_on("py-pandas", type="run")
Expand Down

0 comments on commit 0020528

Please sign in to comment.