summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Smedstad2024-01-15 09:53:21 +0100
committerCarl Smedstad2024-01-15 09:53:21 +0100
commit24ddb804f9bcadc186cc0b8c34501325008f6b88 (patch)
treec0e8b31c9f77ef20af9e26132e73fc8aaa8b5e2b
parent442b50d942f02d1cc879fe7fc09d4e6e093a2250 (diff)
downloadaur-24ddb804f9bcadc186cc0b8c34501325008f6b88.tar.gz
upgpkg: python-pytensor 2.18.6-2
Remove redundant fiddling in check function.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 2 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9e4c432956c0..205fe71d6f83 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = python-pytensor
pkgdesc = Fork of Aesara -- Library for defining, optimizing, and efficiently evaluating mathematical expressions involving multi-dimensional arrays
pkgver = 2.18.6
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/pymc-devs/pytensor
arch = x86_64
license = custom
diff --git a/PKGBUILD b/PKGBUILD
index 2bcc7e56740c..c689af5d4881 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=python-pytensor
_name=${pkgname#python-}
pkgver=2.18.6
-pkgrel=1
+pkgrel=2
pkgdesc="Fork of Aesara -- Library for defining, optimizing, and efficiently evaluating mathematical expressions involving multi-dimensional arrays"
arch=(x86_64)
url="https://github.com/pymc-devs/pytensor"
@@ -116,10 +116,6 @@ check() {
_site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
python -m installer --destdir=tmp_install dist/*.whl
- # Remove non-built package to avoid it overriding the built one in
- # tmp_install.
- rm -r pytensor
-
export PYTHONPATH="$PWD/tmp_install/$_site_packages"
# shellcheck disable=SC2086
pytest tests \