Skip to content

Commit

Permalink
Handled documentation requirements installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
pelson committed Nov 3, 2017
1 parent c46d063 commit aef200d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@ install:
conda install --quiet --file ${CONDA_REQS_FILE};
fi
- >
if [[ "${TEST_TARGET}" == 'doctest' ]]; then
conda install --quiet --file requirements/docs.txt
fi
# JUST FOR NOW : Install latest version of iris-grib.
# TODO : remove when this release is available on conda-forge.
- if [[ "$TEST_MINIMAL" != true ]]; then
Expand Down
1 change: 1 addition & 0 deletions requirements/docs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sphinx
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
from __future__ import print_function

from contextlib import contextmanager
from distutils.core import Command
from distutils.util import convert_path
import os
from shutil import copyfile
import sys
import textwrap

from setuptools import setup
from setuptools import setup, Command
from setuptools.command.develop import develop as develop_cmd
from setuptools.command.build_py import build_py

Expand Down

0 comments on commit aef200d

Please sign in to comment.