From 6dec642d3559854c148b68d9182d2dc8e1d16a7f Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Mon, 18 Oct 2021 17:19:13 -0300 Subject: [PATCH] subprojects: Lower minimal pygobject version It works just fine with PyGObject3.8, this min requirement was added in 547570cd790f2b2e390edc1dfb5df4c7a33de45c without any justification for such a high requirement while 3.8 is the min requirement for `gst-python`. Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c1f2887651..5234aaf063 100644 --- a/meson.build +++ b/meson.build @@ -92,7 +92,7 @@ subprojects = [ ['gstreamer-vaapi', { 'option': get_option('vaapi'), 'build-hotdoc': true}], ['gst-omx', { 'option': get_option('omx'), 'build-hotdoc': true}], ['gstreamer-sharp', { 'option': get_option('sharp') }], - ['pygobject', { 'option': get_option('python'), 'match_gst_version': false, 'sysdep': 'pygobject-3.0', 'sysdep_version': '>= 3.38.1' }], + ['pygobject', { 'option': get_option('python'), 'match_gst_version': false, 'sysdep': 'pygobject-3.0', 'sysdep_version': '>= 3.8' }], ['gst-python', { 'option': get_option('python')}], ['gst-examples', { 'option': get_option('gst-examples'), 'match_gst_versions': false}], ['gst-plugins-rs', { 'option': get_option('rs'), 'match_gst_version': false}],