Merge pull request #1876 from reyoung/fix_bug_in_protobuf_version

Fix bug in protobuf.
release/0.10.0
Yu Yang 8 years ago committed by GitHub
commit 62ff2e40d1

@ -23,7 +23,7 @@ setup(name="py_paddle",
install_requires = [ install_requires = [
'nltk>=3.2.2', 'nltk>=3.2.2',
'numpy>=1.8.0', # The numpy is required. 'numpy>=1.8.0', # The numpy is required.
'protobuf>=${PROTOBUF_VERSION}' # The paddle protobuf version 'protobuf==${PROTOBUF_VERSION}' # The paddle protobuf version
], ],
url='http://www.paddlepaddle.org/', url='http://www.paddlepaddle.org/',
license='Apache 2.0', license='Apache 2.0',

@ -16,7 +16,7 @@ setup(name='paddle',
packages=packages, packages=packages,
install_requires=[ install_requires=[
"numpy", "numpy",
"protobuf==3.1.0", "protobuf==${PROTOBUF_VERSION}",
"matplotlib", "matplotlib",
], ],
package_dir={ package_dir={

Loading…
Cancel
Save