# HG changeset patch
# User Nick Wellnhofer <wellnhofer@aevum.de>
# Date 1661780889 -7200
#      Mon Aug 29 15:48:09 2022 +0200
# Node ID 4ab8ed959947d75494dd24bf872b87ab172b975d
# Parent  e906ad7a0b43d84ac4093946f2ed60643fba126d
Allow Python deprecation warnings for now

See libxml2 issue #208.

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -27,7 +27,8 @@
 gcc:python3:
   extends: .test
   variables:
-    CFLAGS: "-O2"
+    # TODO: Re-enable the warning after libxml2 #208 is fixed.
+    CFLAGS: "-O2 -Wno-error=deprecated-declarations"
     PYTHON: "/usr/bin/python3"
 
 gcc:static: