diff options
author | Axel Huebl <axel.huebl@plasma.ninja> | 2018-05-08 19:43:38 +0200 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-05-08 12:43:38 -0500 |
commit | 7ff034a55dae27d3ca038124cf3b416d917e0f3c (patch) | |
tree | 59d87058f2e504952f9eee39f9313f6db1ce9d8c | |
parent | ca9ce8048c5d25eff33fe57691c86c0ae3103e58 (diff) | |
download | spack-7ff034a55dae27d3ca038124cf3b416d917e0f3c.tar.gz spack-7ff034a55dae27d3ca038124cf3b416d917e0f3c.tar.bz2 spack-7ff034a55dae27d3ca038124cf3b416d917e0f3c.tar.xz spack-7ff034a55dae27d3ca038124cf3b416d917e0f3c.zip |
pybind11: v2.2.3 (#8051)
* pybind11: 2.2.3
new release for pybind11, v.2.2.3:
https://github.com/pybind/pybind11/blob/v2.2.3/docs/changelog.rst#v223-april-29-2018
* pybind11: compiler support
mark older versions as conflicts
-rw-r--r-- | var/spack/repos/builtin/packages/py-pybind11/package.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pybind11/package.py b/var/spack/repos/builtin/packages/py-pybind11/package.py index 252ad0db70..c995660d71 100644 --- a/var/spack/repos/builtin/packages/py-pybind11/package.py +++ b/var/spack/repos/builtin/packages/py-pybind11/package.py @@ -39,6 +39,7 @@ class PyPybind11(CMakePackage): version('develop', branch='master', git='https://github.com/pybind/pybind11.git') + version('2.2.3', '55b637945bbf47d99d2c906bf0c13f49') version('2.2.2', 'fc174e1bbfe7ec069af7eea86ec37b5c') version('2.2.1', 'bab1d46bbc465af5af3a4129b12bfa3b') version('2.2.0', '978b26aea1c6bfc4f88518ef33771af2') @@ -49,6 +50,11 @@ class PyPybind11(CMakePackage): extends('python') + # compiler support + conflicts('%gcc@:4.7') + conflicts('%clang@:3.2') + conflicts('%intel@:16') + def cmake_args(self): args = [] args.append('-DPYTHON_EXECUTABLE:FILEPATH=%s' |