Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1 from moj-analytical-services/ci
Browse files Browse the repository at this point in the history
merge ci to master
  • Loading branch information
andrea-sottana-MoJ committed Jun 6, 2020
2 parents 4db156d + ef755c4 commit a64e0b2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
echo -e "import nltk\nnltk.download('punkt')" | python3 # it needs punkt in order to work properly (dataset by default not downloaded at main nltk installation)
- name: Run tests with pytest
env:
PYTHONHASHSEED: 123 # required for deterministic reproducibility of two Word2Vec tests
Expand Down
1 change: 0 additions & 1 deletion pdf2embeddings/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
from pdf2embeddings import scraper, arrange_text, embedder, process_user_queries
__version__ = '0.1.0'
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ gensim==3.8.1
nltk==3.4.5
numpy==1.18.2
pandas==0.25.3
ply==3.11
pyarrow==0.16.0
pytest==5.4.1
scikit-learn==0.22.1
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ def read(*paths):
"nltk==3.4.5",
"numpy==1.18.2",
"pandas==0.25.3",
"ply==3.11",
"pyarrow==0.16.0",
"pytest==5.4.1",
"scikit-learn==0.22.1",
Expand Down

0 comments on commit a64e0b2

Please sign in to comment.