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 = [
'nltk>=3.2.2',
'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/',
license='Apache 2.0',

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

Loading…
Cancel
Save