-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Brought py-ats recipe back to avoid having to bring in py-poetry, try…
…ing double quotes around spec
- Loading branch information
Showing
3 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other | ||
# Spack Project Developers. See the top-level COPYRIGHT file for details. | ||
# | ||
# SPDX-License-Identifier: (Apache-2.0 OR MIT) | ||
|
||
from spack import * | ||
|
||
|
||
class PyAts(PythonPackage): | ||
"""ATS - Automated Testing System - is an open-source, Python-based tool | ||
for automating the running of tests of an application across a broad range | ||
of high performance computers.""" | ||
|
||
homepage = "https://github.com/LLNL/ATS" | ||
git = "https://github.com/LLNL/ATS.git" | ||
|
||
maintainers = ['white238'] | ||
|
||
version('main', branch='main') | ||
version('exit', branch='bugfix/exit-code') | ||
version('7.0.100', tag='7.0.100') | ||
version('7.0.9', tag='7.0.9') | ||
version('7.0.5', tag='7.0.5') | ||
|
||
# TODO: Add flux variant when Flux functionality works in ATS | ||
|
||
depends_on("[email protected]:", type=('build', 'run')) | ||
depends_on("py-numpy", type=('build', 'run')) | ||
depends_on('py-setuptools', type='build') | ||
depends_on('py-poetry-core', type='build') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ class Spheral(CachedCMakePackage, CudaPackage): | |
# DEPENDS | ||
# ------------------------------------------------------------------------- | ||
depends_on('mpi', when='+mpi') | ||
depends_on('cmake@3.10.0:', type='build') | ||
depends_on('cmake@3.18.0:', type='build') | ||
|
||
depends_on('[email protected] +system +filesystem -atomic -container -coroutine -chrono -context -date_time -exception -fiber -graph -iostreams -locale -log -math -mpi -program_options -python -random -regex -test -thread -timer -wave +pic', type='build') | ||
|
||
|
@@ -71,7 +71,7 @@ class Spheral(CachedCMakePackage, CudaPackage): | |
depends_on('py-h5py', type='build') | ||
depends_on('py-docutils', type='build') | ||
depends_on('py-scipy', type='build') | ||
depends_on('py-ats', type='build') | ||
depends_on('py-ats@exit', type='build') | ||
depends_on('py-mpi4py', type='build', when='+mpi') | ||
|
||
depends_on('py-sphinx', type='build') | ||
|