From 366a5e3e2e503a20ef0334fbf9f94c7e421008fa Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 6 Dec 2022 09:08:55 -0500 Subject: [PATCH] take mariadb-connector out of dbapi main job mariadb-connector seems to have their release situation "fixed", but for 1.1.5post3 they are requiring mariadb-connector-c 3.3.1, Fedora 36 which is quite bleeding edge only has 3.2.7. There's no way we can easily have a version specifier that will look at underlying client libraries. since mariadb-connector's main branch seems to work way ahead of where we will normally have client libraries set up, it's not really worth testing in CI right now. Change-Id: Idcb034da6d06620b5e212582bbc63a246a9fe58b --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index b748050525..4af7225e2e 100644 --- a/tox.ini +++ b/tox.ini @@ -43,7 +43,8 @@ deps= dbapimain-mysql: git+https://github.com/PyMySQL/mysqlclient-python.git#egg=mysqlclient dbapimain-mysql: git+https://github.com/PyMySQL/PyMySQL.git#egg=pymysql - dbapimain-mysql: git+https://github.com/mariadb-corporation/mariadb-connector-python#egg=mariadb + +# dbapimain-mysql: git+https://github.com/mariadb-corporation/mariadb-connector-python#egg=mariadb dbapimain-oracle: git+https://github.com/oracle/python-cx_Oracle.git#egg=cx_Oracle -- 2.47.2