Skip to content

Commit 29ca919

Browse files
Add official support for Python 3.10.
1 parent ae687ce commit 29ca919

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ of exclusions. See the
77
[homepage](https://oracle.github.io/python-cx_Oracle/index.html) for a
88
feature list.
99

10-
cx_Oracle 8.3 has been tested with Python versions 3.6 through 3.9. You can use
11-
cx_Oracle with Oracle 11.2, 12c, 18c, 19c and 21c client libraries. Oracle's
12-
standard client-server version interoperability allows connection to both older
13-
and newer databases. For example Oracle 19c client libraries can connect to
14-
Oracle Database 11.2. Older versions of cx_Oracle may work with older
15-
versions of Python.
10+
cx_Oracle 8.3 has been tested with Python versions 3.6 through 3.10. You can
11+
use cx_Oracle with Oracle 11.2, 12c, 18c, 19c and 21c client libraries.
12+
Oracle's standard client-server version interoperability allows connection to
13+
both older and newer databases. For example Oracle 19c client libraries can
14+
connect to Oracle Database 11.2. Older versions of cx_Oracle may work with
15+
older versions of Python.
1616

1717
## Installation
1818

doc/src/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Welcome to cx_Oracle's documentation!
33

44
**cx_Oracle** is a module that enables access to Oracle Database and conforms
55
to the Python database API specification. This module is currently tested
6-
against Oracle Client 21c, 19c, 18c, 12c, and 11.2, and Python 3.6, 3.7, 3.8
7-
and 3.9. Older versions of cx_Oracle may be used with previous Python
6+
against Oracle Client 21c, 19c, 18c, 12c, and 11.2, and Python 3.6, 3.7, 3.8,
7+
3.9 and 3.10. Older versions of cx_Oracle may be used with previous Python
88
releases.
99

1010
**cx_Oracle** is distributed under an open-source :ref:`license <license>`

doc/src/release_notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Version 8.3 (TBD)
1313
#) Updated embedded ODPI-C to `version 4.3.0
1414
<https://oracle.github.io/odpi/doc/releasenotes.html#
1515
version-4-3-tbd>`__.
16+
#) Added official support for Python 3.10.
1617
#) Corrected calculation of attribute :data:`MessageProperties.msgid`. Note
1718
that the attribute is now also read only.
1819
#) Binary integer variables now explicitly convert values to integers (since

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38,39}
2+
envlist = py{36,37,38,39,310}
33

44
[testenv]
55
commands = {envpython} -m unittest discover -v -s test

0 commit comments

Comments
 (0)