Skip to content
This repository has been archived by the owner on Aug 22, 2019. It is now read-only.

Commit

Permalink
fixed pandoc requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
tmbo committed Oct 4, 2017
1 parent 113da05 commit df28a7c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .travis.yml
@@ -1,5 +1,8 @@
language: python
sudo: required
addons:
apt_packages:
- pandoc
cache:
directories:
- "$HOME/.cache/pip"
Expand All @@ -21,6 +24,7 @@ install:
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION scipy=0.19.0 numpy=1.12.1
scikit-learn=0.18.1
- source activate test-environment
- pip install pypandoc==1.4
- pip install -r dev-requirements.txt
- pip install spacy sklearn-crfsuite==0.3.5
- pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-1.2.0/en_core_web_sm-1.2.0.tar.gz
Expand Down Expand Up @@ -53,7 +57,8 @@ jobs:
- export ${!TRAVIS*}
- sphinx-versioning push docs gh-pages .
- stage: deploy
install: skip
install:
- pip install pypandoc==1.4
script: skip
deploy:
provider: pypi
Expand Down
1 change: 0 additions & 1 deletion dev-requirements.txt
Expand Up @@ -15,7 +15,6 @@ matplotlib==1.5.3
pygraphviz==1.3.1

# docs
pypandoc==1.4
sphinx-autobuild==0.6.0
sphinxcontrib-versioning==2.2.1
nbsphinx==0.2.13
Expand Down
2 changes: 1 addition & 1 deletion rasa_core/version.py
Expand Up @@ -4,4 +4,4 @@
from __future__ import absolute_import


__version__ = '0.7.0a7'
__version__ = '0.7.0a8'

0 comments on commit df28a7c

Please sign in to comment.