Skip to content

Commit

Permalink
Merge pull request inspirehep#3 from michamos/remove-dependency-links
Browse files Browse the repository at this point in the history
setup: replace dependency-links with PEP508 URL
  • Loading branch information
michamos authored Oct 24, 2018
2 parents 0607ab6 + 163b16d commit 59081db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ before_install:
- travis_retry pip install --upgrade pip setuptools
- travis_retry pip install coveralls
install:
- travis_retry pip install --progress-bar off --process-dependency-links -e .[tests]
- travis_retry pip install --progress-bar off -e .[tests]
script:
- "./run-tests.sh"
deploy:
Expand Down
2 changes: 1 addition & 1 deletion run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
set -e

flake8 inspire_classifier tests
py.test -s tests
py.test tests
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,10 @@
'marshmallow~=3.0.0b13,>=3.0.0b13',
'numpy~=1.15,>=1.15.0',
'spacy~=2.0,>=2.0.0',
'en_core_web_sm==2.0.0',
'en_core_web_sm@https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.0.0/en_core_web_sm-2.0.0.tar.gz',
'torchtext==0.2.3'
]

dependency_links = [
'https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.0.0/en_core_web_sm-2.0.0.tar.gz'
]

docs_require = []

tests_require = [
Expand Down Expand Up @@ -89,7 +85,6 @@
long_description=readme,
setup_requires=setup_requires,
install_requires=install_requires,
dependency_links=dependency_links,
tests_require=tests_require,
extras_require=extras_require,
classifiers=[
Expand Down

0 comments on commit 59081db

Please sign in to comment.