From b66b38e2d5d4dce0c941dbc4db0c757ef829ac79 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 8 Jun 2022 17:53:29 +0100 Subject: [PATCH] src/poky:bitbake: cooker: Drop sre_constants usage As reported by Martin Jansa : bitbake/lib/bb/cooker.py:16: DeprecationWarning: module 'sre_constants' is deprecated import sre_constants it's deprecated since 3.11 with: https://github.com/python/cpython/issues/91308 The correct replacement for our usage is re.error so use that instead. (Bitbake rev: 3c0cd401472ffee06d5a93bdba566cb033851fcf) Signed-off-by: Richard Purdie --- src/poky | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/poky b/src/poky index 614aed1c1dc..27915d3d8a8 160000 --- a/src/poky +++ b/src/poky @@ -1 +1 @@ -Subproject commit 614aed1c1dc870cdb507e101b48805ef493bbd16 +Subproject commit 27915d3d8a851253c0f019909b7203186a681b55