Skip to content
This repository was archived by the owner on Dec 14, 2020. It is now read-only.

Commit b96d4aa

Browse files
committed
Use pip to install instead of setup.py, following python-jsonschema/jsonschema#449
1 parent 6631060 commit b96d4aa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ install:
2121
- conda create -q -n test-env python=3.6 cython numpy pypandoc pytest
2222
- activate test-env
2323
- cinst pandoc
24-
- python setup.py install
24+
- pip install .
2525
- python -m spacy download en_core_web_md
2626
- python -m spacy download de_core_news_md
2727

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ addons:
1010
- pandoc
1111
install:
1212
- pip uninstall -y numpy
13-
- python setup.py install
13+
- pip install .
1414
- pip install pytest
1515
- python -m spacy download en_core_web_md
1616
- python -m spacy download de_core_news_md

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Alternatively, install the latest code from GitHub (may be unstable):
2121

2222
git clone https://github.com/danielhers/tupa
2323
cd tupa
24-
python setup.py install
24+
pip install .
2525

2626
### Train the parser
2727

0 commit comments

Comments
 (0)