diff options
author | Dylan Delgado | 2022-10-23 23:48:13 -0400 |
---|---|---|
committer | Dylan Delgado | 2022-10-23 23:48:13 -0400 |
commit | 17e7f5ac0dfd74d783051964b268c560292d5e17 (patch) | |
tree | 7e505941e7c904eabcf0b2840b9c2769b8dd50e9 /PKGBUILD | |
parent | 9e09e5b2affe1969755ab74a2a52d69c90a53670 (diff) | |
download | aur-17e7f5ac0dfd74d783051964b268c560292d5e17.tar.gz |
Fix an error where tools.version_utils can't be found
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -3,7 +3,7 @@ _name=scipy pkgname=python-scipy-git -pkgver=v0.17pre.r13106.gef53758eff +pkgver=v0.17pre.r14548.gf71fe40cdc pkgrel=1 pkgdesc="SciPy is open-source software for mathematics, science and engineering. Git version" arch=('x86_64') @@ -12,7 +12,7 @@ license=(BSD) conflicts=(python-scipy) provides=(python-scipy scipy) depends=(python-numpy) -makedepends=(gcc-fortran python-setuptools pybind11 python-pythran) +makedepends=(gcc-fortran python-setuptools pybind11 python-pythran cython) checkdepends=(python-pytest) optdepends=('python-pillow: Image saving module') source=("git+https://github.com/scipy/scipy.git") @@ -25,7 +25,10 @@ pkgver() { build() { cd scipy - git submodule update --init + git submodule update --init + cd tools + touch __init__.py + cd .. python setup.py config_fc build } |