summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMatthias Diener <mdiener@illinois.edu>2020-05-01 20:50:54 -0500
committerGitHub <noreply@github.com>2020-05-01 20:50:54 -0500
commit668dcb78a174a7b6d4103ce59a8dcf685e108579 (patch)
tree91b65cb77355b88c9801c29d3ee1705f219f2a37 /var
parentacabe2deba9659434e344e5c3aa4bdf5afa9beba (diff)
downloadspack-668dcb78a174a7b6d4103ce59a8dcf685e108579.tar.gz
spack-668dcb78a174a7b6d4103ce59a8dcf685e108579.tar.bz2
spack-668dcb78a174a7b6d4103ce59a8dcf685e108579.tar.xz
spack-668dcb78a174a7b6d4103ce59a8dcf685e108579.zip
py-opentuner: add version 0.8.2 (#16423)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-opentuner/package.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-opentuner/package.py b/var/spack/repos/builtin/packages/py-opentuner/package.py
index 5efd8039f3..b55a9073c4 100644
--- a/var/spack/repos/builtin/packages/py-opentuner/package.py
+++ b/var/spack/repos/builtin/packages/py-opentuner/package.py
@@ -12,14 +12,17 @@ class PyOpentuner(PythonPackage):
homepage = "http://opentuner.org/"
git = "https://github.com/jansel/opentuner.git"
+ maintainers = ['matthiasdiener']
+
+ version('0.8.2', commit='8e720a2')
version('0.8.0', commit='4cb9135')
- # No support for Python 3 yet
- depends_on('python@2.7:2.8', type=('build', 'run'))
+ depends_on('python@3:', type=('build', 'run'), when='@0.8.1:')
+ depends_on('python@2.7:2.8', type=('build', 'run'), when='@:0.8.0')
depends_on('py-argparse@1.2.1:', type=('build', 'run'))
depends_on('py-fn-py@0.2.12:', type=('build', 'run'))
+ depends_on('py-future', type=('build', 'run'))
depends_on('py-numpy@1.8.0:', type=('build', 'run'))
- depends_on('py-pysqlite@2.6.3:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-sqlalchemy@0.8.2:', type=('build', 'run'))