Skip to content

Commit ad5a5d6

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

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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 matplotlib networkx 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

2727
build: off

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
include:
1414
- env: TEST=unit
1515
install:
16-
- python setup.py install
16+
- pip install .
1717
- pip install pytest
1818
- pip install -r requirements.visualize.txt
1919
- python -m spacy download en_core_web_md

0 commit comments

Comments
 (0)