diff options
author | Iyán Méndez Veiga | 2020-02-16 13:43:56 +0100 |
---|---|---|
committer | Iyán Méndez Veiga | 2020-02-16 13:43:56 +0100 |
commit | dc67b296cc4ae755ecd04f5913ad04f8a9fb07f1 (patch) | |
tree | 53250b39eccb329b88eb8d74edb9185f87d999ba /PKGBUILD | |
parent | 32764dd8e56d029bcdd557fbbb57e8a956a8035d (diff) | |
download | aur-dc67b296cc4ae755ecd04f5913ad04f8a9fb07f1.tar.gz |
Add missing dependency (pybind11)
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -2,7 +2,7 @@ _pkgname=qiskit-aer pkgname=python-${_pkgname} pkgver=0.4.0 -pkgrel=1 +pkgrel=2 pkgdesc="A high performance simulator for quantum circuits that includes noise models" arch=('x86_64') url="https://github.com/Qiskit/qiskit-aer" @@ -11,7 +11,7 @@ depends=( 'python-qiskit-terra' 'cython' 'openblas' - 'muparserx') + 'pybind11') optdepends=( 'thrust: Parallelization (GPU/CPU) support' 'cuda: Parallelization with CUDA (NVIDIA)' @@ -20,7 +20,8 @@ optdepends=( makedepends=( 'python-setuptools' 'cmake' - 'python-scikit-build') + 'python-scikit-build' + 'muparserx') source=( "${_pkgname}-${pkgver}.tar.gz::https://github.com/Qiskit/${_pkgname}/archive/${pkgver}.tar.gz" "cmake.patch") |