mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-14 12:42:27 +00:00
add requirements for community plugins
This commit is contained in:
parent
268d2a4848
commit
3c35b4ac91
@ -57,7 +57,7 @@ testpy37:
|
||||
image: python:3.7
|
||||
stage: test
|
||||
script:
|
||||
- pip install -r requirements.txt -r test-requirements.txt
|
||||
- pip install -r requirements.txt -r test-requirements.txt -r extra-requirements.txt
|
||||
- python setup.py test
|
||||
|
||||
testpy310:
|
||||
@ -66,7 +66,7 @@ testpy310:
|
||||
image: python:3.10
|
||||
stage: test
|
||||
script:
|
||||
- pip install -r requirements.txt -r test-requirements.txt
|
||||
- pip install -r requirements.txt -r test-requirements.txt -r extra-requirements.txt
|
||||
- python setup.py test
|
||||
|
||||
push_pypi:
|
||||
|
@ -1,2 +1,11 @@
|
||||
gsitk>0.1.9.1
|
||||
flask_cors==3.0.10
|
||||
Pattern==3.6
|
||||
lxml==4.9.3
|
||||
nltk==3.8.1
|
||||
noop==1.0
|
||||
numpy==1.26.0
|
||||
pandas==2.1.1
|
||||
scikit-learn==1.3.1
|
||||
scipy==1.11.2
|
||||
textblob==0.17.1
|
||||
|
@ -186,7 +186,7 @@ def main():
|
||||
print('Listing dependencies')
|
||||
missing = []
|
||||
installed = []
|
||||
for plug in sp.plugins(is_activated=False).values():
|
||||
for plug in sp.plugins(is_activated=False):
|
||||
inst, miss, nltkres = list_dependencies(plug)
|
||||
if not any([inst, miss, nltkres]):
|
||||
continue
|
||||
|
Loading…
Reference in New Issue
Block a user