From 551a770a3d5cd801c87946bdfe74f9a6e9a4524e Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 13 May 2023 21:00:08 +0200 Subject: Require glib 2.64 and g-i 1.64 Since we now target Python 3.8+, looking at Debian and Ubuntu releases we have 1/2.64 in Ubuntu 20.04 and 1/2.66 in Debian bullseye. Go with the older one of the two. --- meson.build | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meson.build b/meson.build index f7371b37..9126c0fc 100644 --- a/meson.build +++ b/meson.build @@ -21,8 +21,8 @@ endif python_dep = python.dependency() -glib_version_req = '>= 2.56.0' -gi_version_req = '>= 1.60.0' +glib_version_req = '>= 2.64.0' +gi_version_req = '>= 1.64.0' pycairo_version_req = '>= 1.16.0' libffi_version_req = '>= 3.0' diff --git a/setup.py b/setup.py index 709b5605..4cd79ed9 100755 --- a/setup.py +++ b/setup.py @@ -37,8 +37,8 @@ from distutils.spawn import find_executable PYGOBJECT_VERSION = "3.45.0" -GLIB_VERSION_REQUIRED = "2.56.0" -GI_VERSION_REQUIRED = "1.60.0" +GLIB_VERSION_REQUIRED = "2.64.0" +GI_VERSION_REQUIRED = "1.64.0" PYCAIRO_VERSION_REQUIRED = "1.16.0" LIBFFI_VERSION_REQUIRED = "3.0" -- cgit v1.2.1