Set the version of CTC decoders to 1.0

pull/2/head
Yibing Liu 7 years ago
parent bf69a1013b
commit 22a882e30b

@ -70,7 +70,6 @@ FILES = glob.glob('kenlm/util/*.cc') \
FILES += glob.glob('openfst-1.6.3/src/lib/*.cc') FILES += glob.glob('openfst-1.6.3/src/lib/*.cc')
# FILES + glob.glob('glog/src/*.cc')
FILES = [ FILES = [
fn for fn in FILES fn for fn in FILES
if not (fn.endswith('main.cc') or fn.endswith('test.cc') or fn.endswith( if not (fn.endswith('main.cc') or fn.endswith('test.cc') or fn.endswith(
@ -107,7 +106,6 @@ decoders_module = [
'kenlm', 'kenlm',
'openfst-1.6.3/src/include', 'openfst-1.6.3/src/include',
'ThreadPool', 'ThreadPool',
#'glog/src'
], ],
libraries=LIBS, libraries=LIBS,
extra_compile_args=ARGS) extra_compile_args=ARGS)
@ -115,7 +113,7 @@ decoders_module = [
setup( setup(
name='swig_decoders', name='swig_decoders',
version='0.1', version='1.0',
description="""CTC decoders""", description="""CTC decoders""",
ext_modules=decoders_module, ext_modules=decoders_module,
py_modules=['swig_decoders'], ) py_modules=['swig_decoders'], )

Loading…
Cancel
Save