summaryrefslogtreecommitdiff
path: root/python-pyinstrument
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2023-01-15 21:15:32 +0100
committerErich Eckner <erich.eckner.ext@bestsecret.com>2023-01-18 10:15:05 +0100
commitd4535a430a1a2a67d4716b7979140e8303dd9daf (patch)
tree079422a8a23bf0fe6ce565424dc042f2215b79a7 /python-pyinstrument
parent456d3199b07db2e4f0ee474771cca7d56efd74a4 (diff)
downloadarchlinuxewe-d4535a430a1a2a67d4716b7979140e8303dd9daf.tar.xz
python-pyinstrument: fix _pinned_dependencies
Diffstat (limited to 'python-pyinstrument')
-rw-r--r--python-pyinstrument/PKGBUILD7
1 files changed, 5 insertions, 2 deletions
diff --git a/python-pyinstrument/PKGBUILD b/python-pyinstrument/PKGBUILD
index 0a808a374..94f87d3f8 100644
--- a/python-pyinstrument/PKGBUILD
+++ b/python-pyinstrument/PKGBUILD
@@ -5,12 +5,15 @@
pkgname=python-pyinstrument
_pkg="${pkgname#python-}"
pkgver=4.1.1
-pkgrel=2
+pkgrel=1
pkgdesc="Call stack profiler for Python"
arch=('x86_64')
url="https://github.com/joerick/pyinstrument"
license=('BSD')
-depends=('python>=3.7')
+_pinned_dependencies=(
+ 'glibc>=2.36'
+)
+depends=('python>=3.10' 'python<3.11' "${_pinned_dependencies[@]}")
makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel')
# checkdepends=(
# 'python-pytest'