setup add required_package

This commit is contained in:
jinyaohui 2020-12-07 15:02:09 +08:00
parent f85fbc4dd2
commit 235c835016
2 changed files with 4 additions and 3 deletions

View File

@ -13,8 +13,7 @@ matplotlib >= 3.1.3 # for ut test
opencv-python >= 4.1.2.30 # for ut test
sklearn >= 0.0 # for st test
pandas >= 1.0.2 # for ut test
bs4
astunparse
astunparse >= 1.6.3
packaging >= 20.0
pycocotools >= 2.0.0 # for st test
tables >= 3.6.1 # for st test

View File

@ -109,7 +109,7 @@ def build_dependencies():
build_dependencies()
required_package = [
'numpy >= 1.17.0',
'numpy >= 1.17.0, <= 1.17.5',
'protobuf >= 3.8.0',
'asttokens >= 1.1.13',
'pillow >= 6.2.0',
@ -117,7 +117,9 @@ required_package = [
'easydict >= 1.9',
'sympy >= 1.4',
'cffi >= 1.13.2',
'wheel >= 0.32.0',
'decorator >= 4.4.0',
'setuptools >= 40.8.0',
'astunparse >= 1.6.3',
'packaging >= 20.0'
]