Skip to content
Snippets Groups Projects

Draft: esd-spack-installation: added abstract methods for spack manager and added...

Closed Adrian Ciu requested to merge esd-spack-installation into esd
Compare and
16 files
+ 284
9
Compare changes
  • Side-by-side
  • Inline
Files
16
+ 12
0
from pathlib import Path
class SpackModel:
""""
Provides details about the spack environment
"""
def __init__(self, env_name: str, path: Path, git_path: str = None):
self.name = env_name
self.path = path
self.git_path = git_path