From 6282bcef11781b5ded26d48b22b5fac8d2eebd61 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 18 Mar 2026 20:21:20 -0400 Subject: [PATCH] remove cx_oracle from testing cx_oracle is no longer able to build from its .tar.gz form reliably because it does not include setuptools in its build dependencies. It still can be built if pip is given --no-build-isolation, or if a wheel file is installed rather than the .tar.gz, but given how quickly cx_oracle has been pushed aside by oracledb it's not really that important to be testing it anymore. Change-Id: I8a4b2cffabe5275a0df88b5a624ecd6379d84d37 --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 6678dfa730..51971d5897 100644 --- a/noxfile.py +++ b/noxfile.py @@ -49,7 +49,7 @@ DB_CLI_NAMES = { "greenlet": {"asyncmy", "aiomysql"}, }, "oracle": { - "nogreenlet": {"cx_oracle", "oracledb"}, + "nogreenlet": {"oracledb"}, "greenlet": {"oracledb_async"}, }, "mssql": { -- 2.47.3