Add global statements simply to make running the setup script within another
setup script (cx_OracleDBATools) happy.
This commit is contained in:
parent
562359d339
commit
2ea38919cf
4
setup.py
4
setup.py
|
@ -143,6 +143,10 @@ class Distribution(distutils.dist.Distribution):
|
|||
class build(distutils.command.build.build):
|
||||
|
||||
def finalize_options(self):
|
||||
global distutils
|
||||
global os
|
||||
global sys
|
||||
global oracleVersion
|
||||
platSpecifier = ".%s-%s-%s" % \
|
||||
(distutils.util.get_platform(), sys.version[0:3],
|
||||
oracleVersion)
|
||||
|
|
Loading…
Reference in New Issue