Skip to content
Permalink
Browse files

Adding recommonmark for build

  • Loading branch information...
ajdapretnar committed Jan 16, 2019
1 parent f5017bb commit 23f89ba00cab64db95eab2817b98367bbf622731
Showing with 7 additions and 2 deletions.
  1. +1 −1 appveyor.yml
  2. +2 −1 requirements-dev.txt
  3. +1 −0 requirements-doc.txt
  4. +3 −0 setup.py
@@ -18,7 +18,7 @@ environment:
# disable threaded builds on Python 3.5+ when using numpy's distutils
# (https://github.com/numpy/numpy/issues/7607)
BUILD_GLOBAL_OPTIONS: build -j1
BUILD_ENV: wheel==0.29.0 pip==9.0.1 numpy==1.9.3 sphinx==1.8.2
BUILD_ENV: wheel==0.29.0 pip==9.0.1 numpy==1.9.3 -r requirements-doc.txt
# SIP 4.19.4+ with PyQt5==5.9.1+ segfault our tests (GH-2756)
TEST_ENV: sip==4.19.6 PyQt5==5.9.2 numpy~=1.14.0 scipy~=1.0.0 scikit-learn pandas==0.21.1

@@ -1,4 +1,5 @@
pylint
radon
# for build_htmlhelp command
sphinx>=1.5
sphinx>=1.5
recommonmark
@@ -1,4 +1,5 @@
docutils
numpydoc
Sphinx>=1.3
recommonmark
PyQt5
@@ -17,7 +17,10 @@


try:
# need sphinx and recommonmark for build_htmlhelp command
from sphinx.setup_command import BuildDoc
# pylint: disable=unused-import
import recommonmark
have_sphinx = True
except ImportError:
have_sphinx = False

0 comments on commit 23f89ba

Please sign in to comment.
You can’t perform that action at this time.