diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2023-05-13 21:00:08 +0200 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2023-05-13 21:04:15 +0200 |
commit | 551a770a3d5cd801c87946bdfe74f9a6e9a4524e (patch) | |
tree | ea5b3a818a919d19e292f3de66d5535b2d0a3ec1 /setup.py | |
parent | b98f5ee75ec5ef9b5dbce17645217ea57a793176 (diff) | |
download | pygobject-master.tar.gz |
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.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |