From bf58e8c317cdef387e9a8fefd324c539ec62e0d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ketelaars?= Date: Thu, 5 Mar 2020 03:10:10 +0100 Subject: [PATCH] xxhash>=0.7.3 provides a pkgconfig file https://github.com/Cyan4973/xxHash/pull/324 As advertised, xxhash is picked up by py-pkgconfig. --- setup_checksums.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_checksums.py b/setup_checksums.py index 577a878b..c4a2fa38 100644 --- a/setup_checksums.py +++ b/setup_checksums.py @@ -30,7 +30,7 @@ def xxhash_ext_kwargs(pc, prefer_system, system_prefix): library_dirs=[os.path.join(system_prefix, 'lib')], libraries=['xxhash']) - if pc and pc.installed('libxxhash', '>= 1.7.0'): + if pc and pc.installed('libxxhash', '>= 0.7.3'): print('Detected and preferring libxxhash [via pkg-config]') return pc.parse('libxxhash')