]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
amend cx_Oracle version checks, setup.cfg to oracle 8
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 13 Oct 2023 18:01:07 +0000 (14:01 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 13 Oct 2023 18:13:13 +0000 (14:13 -0400)
commit2dfd8297dbbd7dbbd83fd66187c3e5c24bc42163
tree92c76d98fbb9fc90e3790a6cc3492d56a7a2ee81
parent489f059853539fb6185d0613c68e21f205a3ec79
amend cx_Oracle version checks, setup.cfg to oracle 8

Fixed issue where the cx_Oracle dialect claimed to support a lower
cx_Oracle version (7.x) than was actually supported in practice within the
2.0 series of SQLAlchemy. The dialect imports symbols that are only in
cx_Oracle 8 or higher, so runtime dialect checks as well as setup.cfg
requirements have been updated to reflect this compatibility.

Fixes: #10470
Change-Id: Ic955c085e2239a632031d5a80a8b9a9c697a88f8
doc/build/changelog/unreleased_20/10470.rst [new file with mode: 0644]
lib/sqlalchemy/dialects/oracle/cx_oracle.py
setup.cfg
test/dialect/oracle/test_dialect.py