diff options
author | Erich Eckner <git@eckner.net> | 2023-01-15 21:15:32 +0100 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-01-18 10:15:05 +0100 |
commit | d4535a430a1a2a67d4716b7979140e8303dd9daf (patch) | |
tree | 079422a8a23bf0fe6ce565424dc042f2215b79a7 /python-pyinstrument/PKGBUILD | |
parent | 456d3199b07db2e4f0ee474771cca7d56efd74a4 (diff) | |
download | archlinuxewe-d4535a430a1a2a67d4716b7979140e8303dd9daf.tar.xz |
python-pyinstrument: fix _pinned_dependencies
Diffstat (limited to 'python-pyinstrument/PKGBUILD')
-rw-r--r-- | python-pyinstrument/PKGBUILD | 7 |
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' |