2015-01-02 17:58:31 +03:00
|
|
|
language: python
|
2015-01-05 20:00:10 +03:00
|
|
|
|
2015-12-13 21:54:16 +03:00
|
|
|
sudo: required
|
|
|
|
dist: precise
|
|
|
|
group: edge
|
2015-12-13 21:46:19 +03:00
|
|
|
|
2015-12-13 21:34:51 +03:00
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
- "3.4"
|
|
|
|
|
2015-01-05 20:00:10 +03:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
|
2015-12-14 09:28:07 +03:00
|
|
|
env:
|
|
|
|
- SETUPTOOLS=19
|
|
|
|
- SETUPTOOLS=18
|
|
|
|
- SETUPTOOLS=17
|
|
|
|
|
2015-01-02 17:58:31 +03:00
|
|
|
install:
|
2015-12-14 09:32:17 +03:00
|
|
|
- pip install -U pip
|
|
|
|
- pip uninstall -y setuptools
|
2015-12-14 09:28:07 +03:00
|
|
|
- pip install setuptools<$SETUPTOOLS
|
2015-12-13 21:40:44 +03:00
|
|
|
- pip install -r requirements.txt
|
2015-12-13 21:54:16 +03:00
|
|
|
- python setup.py sdist
|
|
|
|
- pip install dist/*
|
2015-06-07 21:47:45 +03:00
|
|
|
|
2015-01-05 11:31:40 +03:00
|
|
|
script:
|
2015-12-13 22:30:51 +03:00
|
|
|
- mkdir tmp; cd tmp
|
2015-12-13 21:34:51 +03:00
|
|
|
- python -m spacy.en.download
|
2015-12-13 22:40:38 +03:00
|
|
|
- python -m pytest ../spacy/ -x --models --vectors --slow
|