From 875e31673ed5b7ab5e0d0230a908b80390906114 Mon Sep 17 00:00:00 2001 From: Luke Hsiao Date: Sat, 31 Mar 2018 00:00:49 -0700 Subject: [PATCH] Remove unneeded packages --- .travis.yml | 3 +-- python-package-requirement.txt | 24 ------------------------ setup.py | 2 -- 3 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 python-package-requirement.txt diff --git a/.travis.yml b/.travis.yml index f162d2dff..4709f835c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ install: - cd .. - export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH" - echo "Using LD_LIBRARY_PATH=${LD_LIBRARY_PATH}" -- pip install -r python-package-requirement.txt +- make dev # install package locally for tests - python -m spacy download en before_script: @@ -42,7 +42,6 @@ before_script: - cd tests/e2e/ - "./download_data.sh" - cd ../.. -- make dev # install package locally for tests - flake8 fonduer --count --max-line-length=127 --statistics --show-source --ignore=E731,W503,E741,E123 script: diff --git a/python-package-requirement.txt b/python-package-requirement.txt deleted file mode 100644 index 0c5181a08..000000000 --- a/python-package-requirement.txt +++ /dev/null @@ -1,24 +0,0 @@ -bs4 -editdistance -future -ipywidgets>=7.0 -jupyter -lxml==3.6.4 -matplotlib -nltk -numba -numbskull -numpy>=1.11 -pandas -pdftotree -psycopg2-binary -pytest>=3.4.0 -pyyaml -requests -scipy>=0.18 -six -spacy>=2.0.7 -sqlalchemy>=1.0.14 -tensorflow>=1.0 -treedlib -wand diff --git a/setup.py b/setup.py index 47e655e4f..07040945d 100644 --- a/setup.py +++ b/setup.py @@ -12,8 +12,6 @@ 'bs4', 'editdistance', 'future', - 'ipywidgets>=7.0', - 'jupyter', 'lxml==3.6.4', 'matplotlib', 'nltk',