From 2d6ecd36238f3cab7dcd75a79b7a481dfb93ede2 Mon Sep 17 00:00:00 2001 From: Ghanshyam Mann Date: Wed, 6 Sep 2023 16:52:41 -0500 Subject: [PATCH] Fix bindep.txt for python 3.11 job(Debian Bookworm) Python 3.11 job run on Debian Bookworm which does not the mysql pkg for example, mariadb-server, libmysqlclient-dev instead they have mariadb. Updating bindep.txt file to adjust the pkgs as per Debian bookworm. Change-Id: Ic1008c7368bd1f658c48ddaef260e33d14358a03 --- bindep.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/bindep.txt b/bindep.txt index c46165b5..b85235c7 100644 --- a/bindep.txt +++ b/bindep.txt @@ -4,11 +4,13 @@ # libpq-dev is needed by openstack-tox-py37 build only. libpq-dev [platform:dpkg test] python3-dev [platform:dpkg test] -libmysqlclient-dev [platform:dpkg test] +libmysqlclient-dev [platform:dpkg test !platform:debian] +libmariadb-dev-compat [platform:debian] mysql [platform:rpm test] -mysql-client [platform:dpkg test] +mysql-client [platform:dpkg test !platform:debian] mysql-devel [platform:rpm test] -mysql-server [test] +mysql-server [test !platform:debian] +mariadb-server [platform:debian] postgresql [test] postgresql-client [platform:dpkg test] postgresql-devel [platform:rpm test]