From 6f8da404ad997bfd7c56bc2341897455b5c19201 Mon Sep 17 00:00:00 2001 From: Pedro Brochado Date: Mon, 22 Jul 2024 23:57:19 -0300 Subject: [PATCH] Skip constrain calculation for PyGObject [noissue] --- .ci/scripts/calc_constraints.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ci/scripts/calc_constraints.py b/.ci/scripts/calc_constraints.py index b5be1b1f5..ede3fc269 100755 --- a/.ci/scripts/calc_constraints.py +++ b/.ci/scripts/calc_constraints.py @@ -105,6 +105,8 @@ def main(): if line.strip().startswith("#"): # Shortcut comment only lines print(line.strip()) + elif "pygobject" in line.lower(): + print("# Skipping PyGObject.") else: req, comment = split_comment(line) if args.upper: