Add official support for Python 3.10.

This commit is contained in:
Anthony Tuininga 2021-11-04 13:20:11 -06:00
parent ae687ce736
commit 29ca919445
4 changed files with 10 additions and 9 deletions

View File

@ -7,12 +7,12 @@ of exclusions. See the
[homepage](https://oracle.github.io/python-cx_Oracle/index.html) for a [homepage](https://oracle.github.io/python-cx_Oracle/index.html) for a
feature list. feature list.
cx_Oracle 8.3 has been tested with Python versions 3.6 through 3.9. You can use cx_Oracle 8.3 has been tested with Python versions 3.6 through 3.10. You can
cx_Oracle with Oracle 11.2, 12c, 18c, 19c and 21c client libraries. Oracle's use cx_Oracle with Oracle 11.2, 12c, 18c, 19c and 21c client libraries.
standard client-server version interoperability allows connection to both older Oracle's standard client-server version interoperability allows connection to
and newer databases. For example Oracle 19c client libraries can connect to both older and newer databases. For example Oracle 19c client libraries can
Oracle Database 11.2. Older versions of cx_Oracle may work with older connect to Oracle Database 11.2. Older versions of cx_Oracle may work with
versions of Python. older versions of Python.
## Installation ## Installation

View File

@ -3,8 +3,8 @@ Welcome to cx_Oracle's documentation!
**cx_Oracle** is a module that enables access to Oracle Database and conforms **cx_Oracle** is a module that enables access to Oracle Database and conforms
to the Python database API specification. This module is currently tested to the Python database API specification. This module is currently tested
against Oracle Client 21c, 19c, 18c, 12c, and 11.2, and Python 3.6, 3.7, 3.8 against Oracle Client 21c, 19c, 18c, 12c, and 11.2, and Python 3.6, 3.7, 3.8,
and 3.9. Older versions of cx_Oracle may be used with previous Python 3.9 and 3.10. Older versions of cx_Oracle may be used with previous Python
releases. releases.
**cx_Oracle** is distributed under an open-source :ref:`license <license>` **cx_Oracle** is distributed under an open-source :ref:`license <license>`

View File

@ -13,6 +13,7 @@ Version 8.3 (TBD)
#) Updated embedded ODPI-C to `version 4.3.0 #) Updated embedded ODPI-C to `version 4.3.0
<https://oracle.github.io/odpi/doc/releasenotes.html# <https://oracle.github.io/odpi/doc/releasenotes.html#
version-4-3-tbd>`__. version-4-3-tbd>`__.
#) Added official support for Python 3.10.
#) Corrected calculation of attribute :data:`MessageProperties.msgid`. Note #) Corrected calculation of attribute :data:`MessageProperties.msgid`. Note
that the attribute is now also read only. that the attribute is now also read only.
#) Binary integer variables now explicitly convert values to integers (since #) Binary integer variables now explicitly convert values to integers (since

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py{36,37,38,39} envlist = py{36,37,38,39,310}
[testenv] [testenv]
commands = {envpython} -m unittest discover -v -s test commands = {envpython} -m unittest discover -v -s test