Update bundled bundled capnp to 0.8.1 due to CVE-2022-46149

- This only affects pycapnp if you're using bundled capnp (otherwise
  just update libcapnp)
  * pypi packages are affected
This commit is contained in:
Jacob Alexander
2022-11-30 10:18:06 -08:00
parent 928dd13652
commit 56ef658e46
3 changed files with 3 additions and 3 deletions

View File

@@ -136,7 +136,7 @@ class build_libcapnp_ext(build_ext_c):
# Look for capnproto using pkg-config (and minimum version)
try:
if pkgconfig.installed("capnp", ">= 0.8.0"):
if pkgconfig.installed("capnp", ">= 0.7.0"):
need_build = False
else:
need_build = True