File tree Expand file tree Collapse file tree 2 files changed +23
-2
lines changed
Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 8080 flake8 . --count --exit-zero --max-complexity=10 --ignore=E501 --statistics
8181 - name : Test WNF
8282 run : nosetests -c nose_setup_coverage.cfg tests
83+
84+ build-local :
85+ strategy :
86+ matrix :
87+ python-version : ["3.7", "3.8"]
88+ os : [ubuntu-latest, windows-latest]
89+ runs-on : ${{ matrix.os }}
90+
91+ steps :
92+ - uses : actions/checkout@v3
93+ - name : Set up Python ${{ matrix.python-version }}
94+ uses : actions/setup-python@v3
95+ with :
96+ python-version : ${{ matrix.python-version }}
97+ - name : Install package & dependencies
98+ run : |
99+ python -m pip install --upgrade pip
100+ pip install -r requirements.txt
101+ python setup.py develop
102+ - name : Test WNF
103+ run : nosetests -c nose_setup_coverage.cfg tests
Original file line number Diff line number Diff line change @@ -23,5 +23,5 @@ coverage==5.3
2323markupsafe == 2.0.1 # BUG FIX -> https://github.com/aws/aws-sam-cli/issues/3661
2424Cython == 0.29.24
2525spacy == 3.2.4
26- # The following line downloads a spacy model. It can be uncommented to use the lemmatizer, but you'll need an internet access to download it.
27- # https://github.com/explosion/spacy-models/releases/download/fr_core_news_sm-3.2.0/fr_core_news_sm-3.2.0-py3-none-any.whl
26+ # The following line downloads a spacy model. It can be commented if you don't have an internet access to download it, but lemmatizer features won't work .
27+ https://github.com/explosion/spacy-models/releases/download/fr_core_news_sm-3.2.0/fr_core_news_sm-3.2.0-py3-none-any.whl
You can’t perform that action at this time.
0 commit comments