File tree Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 1- # cx_Oracle version 8.0 (Development)
1+ # cx_Oracle version 8.0
22
33cx_Oracle is a Python extension module that enables access to Oracle
44Database. It conforms to the [ Python database API 2.0
Original file line number Diff line number Diff line change 4242# The short X.Y version.
4343version = '8.0'
4444# The full version, including alpha/beta/rc tags.
45- release = '8.0.0-dev '
45+ release = '8.0.0'
4646
4747# There are two options for replacing |today|: either, you set today to some
4848# non-false value, then it is used:
Original file line number Diff line number Diff line change 55cx_Oracle Release Notes
66=======================
77
8- Version 8.0 (TBD )
9- -----------------
8+ Version 8.0 (June 2020 )
9+ -----------------------
1010
11- #) Dropped support for Python 2.7.
11+ #) Dropped support for Python 2. For those still requiring Python 2, see
12+ :ref: `python2 `.
1213#) Updated embedded ODPI-C to `version 4.0
13- <https://oracle.github.io/odpi/doc/releasenotes.html#version-4-0-tbd> `__.
14+ <https://oracle.github.io/odpi/doc/releasenotes.html#
15+ version-4-0-june-25-2020> `__.
1416#) Reworked type management to clarify and simplify code
1517
1618 - Added :ref: `constants <dbtypes >` for all database types. The database
@@ -46,6 +48,8 @@ Version 8.0 (TBD)
4648
4749#) Added function :meth: `cx_Oracle.init_oracle_client() ` in order to enable
4850 programmatic control of the initialization of the Oracle Client library.
51+ #) The default encoding for all character data is now UTF-8 and any character
52+ set specified in the environment variable ``NLS_LANG `` is ignored.
4953#) Added functions :meth: `SodaCollection.save() `,
5054 :meth: `SodaCollection.saveAndGet() ` and :meth: `SodaCollection.truncate() `
5155 available in Oracle Client 20 and higher.
Original file line number Diff line number Diff line change 2424 from distutils .extension import Extension
2525
2626# define build constants
27- BUILD_VERSION = "8.0.0-dev "
27+ BUILD_VERSION = "8.0.0"
2828
2929# setup extra link and compile args
3030extraLinkArgs = []
@@ -64,9 +64,7 @@ def run(self):
6464 "Natural Language :: English" ,
6565 "Operating System :: OS Independent" ,
6666 "Programming Language :: C" ,
67- "Programming Language :: Python" ,
68- "Programming Language :: Python :: 2" ,
69- "Programming Language :: Python :: 3" ,
67+ "Programming Language :: Python :: 3 :: Only" ,
7068 "Topic :: Database"
7169]
7270
You can’t perform that action at this time.
0 commit comments