We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5912382 commit b4eee0bCopy full SHA for b4eee0b
clingo/install_clingo.py
100644
100755
@@ -1,8 +1,8 @@
1
#!/usr/bin/env spack-python
2
3
-import archspec.cpu
4
import spack.bootstrap.config
5
import spack.main
+import spack.vendor.archspec.cpu
6
7
if __name__ == "__main__":
8
install = spack.main.SpackCommand("install")
@@ -12,4 +12,6 @@
12
f"Installing clingo-bootstrap with Python: "
13
f"{spack.bootstrap.config.spec_for_current_python()}"
14
)
15
- install(f"clingo-bootstrap@spack +optimized ~docs target={archspec.cpu.host().family}")
+ install(
16
+ f"clingo-bootstrap@spack +optimized ~docs target={spack.vendor.archspec.cpu.host().family}"
17
+ )
0 commit comments