Codebase list python-cx-oracle / 8d719c3
Preparing to release cx_Oracle 8.0.0. Anthony Tuininga 3 years ago
4 changed file(s) with 13 addition(s) and 11 deletion(s). Raw diff Collapse all Expand all
0 # cx_Oracle version 8.0 (Development)
0 # cx_Oracle version 8.0
11
22 cx_Oracle is a Python extension module that enables access to Oracle
33 Database. It conforms to the [Python database API 2.0
4141 # The short X.Y version.
4242 version = '8.0'
4343 # The full version, including alpha/beta/rc tags.
44 release = '8.0.0-dev'
44 release = '8.0.0'
4545
4646 # There are two options for replacing |today|: either, you set today to some
4747 # non-false value, then it is used:
44 cx_Oracle Release Notes
55 =======================
66
7 Version 8.0 (TBD)
8 -----------------
9
10 #) Dropped support for Python 2.7.
7 Version 8.0 (June 2020)
8 -----------------------
9
10 #) Dropped support for Python 2. For those still requiring Python 2, see
11 :ref:`python2`.
1112 #) Updated embedded ODPI-C to `version 4.0
12 <https://oracle.github.io/odpi/doc/releasenotes.html#version-4-0-tbd>`__.
13 <https://oracle.github.io/odpi/doc/releasenotes.html#
14 version-4-0-june-25-2020>`__.
1315 #) Reworked type management to clarify and simplify code
1416
1517 - Added :ref:`constants <dbtypes>` for all database types. The database
4547
4648 #) Added function :meth:`cx_Oracle.init_oracle_client()` in order to enable
4749 programmatic control of the initialization of the Oracle Client library.
50 #) The default encoding for all character data is now UTF-8 and any character
51 set specified in the environment variable ``NLS_LANG`` is ignored.
4852 #) Added functions :meth:`SodaCollection.save()`,
4953 :meth:`SodaCollection.saveAndGet()` and :meth:`SodaCollection.truncate()`
5054 available in Oracle Client 20 and higher.
2323 from distutils.extension import Extension
2424
2525 # define build constants
26 BUILD_VERSION = "8.0.0-dev"
26 BUILD_VERSION = "8.0.0"
2727
2828 # setup extra link and compile args
2929 extraLinkArgs = []
6363 "Natural Language :: English",
6464 "Operating System :: OS Independent",
6565 "Programming Language :: C",
66 "Programming Language :: Python",
67 "Programming Language :: Python :: 2",
68 "Programming Language :: Python :: 3",
66 "Programming Language :: Python :: 3 :: Only",
6967 "Topic :: Database"
7068 ]
7169