File tree 4 files changed +12
-10
lines changed
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
2
2
3
3
cx_Oracle is a Python extension module that enables access to Oracle
4
4
Database. It conforms to the [ Python database API 2.0
Original file line number Diff line number Diff line change 42
42
# The short X.Y version.
43
43
version = '8.0'
44
44
# The full version, including alpha/beta/rc tags.
45
- release = '8.0.0-dev '
45
+ release = '8.0.0'
46
46
47
47
# There are two options for replacing |today|: either, you set today to some
48
48
# non-false value, then it is used:
Original file line number Diff line number Diff line change 5
5
cx_Oracle Release Notes
6
6
=======================
7
7
8
- Version 8.0 (TBD )
9
- -----------------
8
+ Version 8.0 (June 2020 )
9
+ -----------------------
10
10
11
- #) Dropped support for Python 2.7.
11
+ #) Dropped support for Python 2. For those still requiring Python 2, see
12
+ :ref: `python2 `.
12
13
#) 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> `__.
14
16
#) Reworked type management to clarify and simplify code
15
17
16
18
- Added :ref: `constants <dbtypes >` for all database types. The database
@@ -46,6 +48,8 @@ Version 8.0 (TBD)
46
48
47
49
#) Added function :meth: `cx_Oracle.init_oracle_client() ` in order to enable
48
50
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.
49
53
#) Added functions :meth: `SodaCollection.save() `,
50
54
:meth: `SodaCollection.saveAndGet() ` and :meth: `SodaCollection.truncate() `
51
55
available in Oracle Client 20 and higher.
Original file line number Diff line number Diff line change 24
24
from distutils .extension import Extension
25
25
26
26
# define build constants
27
- BUILD_VERSION = "8.0.0-dev "
27
+ BUILD_VERSION = "8.0.0"
28
28
29
29
# setup extra link and compile args
30
30
extraLinkArgs = []
@@ -64,9 +64,7 @@ def run(self):
64
64
"Natural Language :: English" ,
65
65
"Operating System :: OS Independent" ,
66
66
"Programming Language :: C" ,
67
- "Programming Language :: Python" ,
68
- "Programming Language :: Python :: 2" ,
69
- "Programming Language :: Python :: 3" ,
67
+ "Programming Language :: Python :: 3 :: Only" ,
70
68
"Topic :: Database"
71
69
]
72
70
You can’t perform that action at this time.
0 commit comments