Skip to content

Commit

Permalink
Merge pull request #1734 from dib-lab/fix/cyimport
Browse files Browse the repository at this point in the history
[MRG] Docs don't build correctly without Cython
  • Loading branch information
betatim committed Jun 16, 2017
2 parents cb717f4 + 15c249e commit acea494
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ PYSOURCES=$(filter-out khmer/_version.py, \
SOURCES=$(PYSOURCES) $(CPPSOURCES) $(CYSOURCES) setup.py

DEVPKGS=pep8==1.6.2 diff_cover autopep8 pylint coverage gcovr pytest \
'pytest-runner>=2.0,<3dev' pydocstyle screed pyenchant Cython==0.25.2
'pytest-runner>=2.0,<3dev' pydocstyle pyenchant

GCOVRURL=git+https://github.com/nschum/gcovr.git@never-executed-branches

Expand Down
1 change: 1 addition & 0 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
sphinxcontrib-autoprogram==0.1.2
setuptools>=3.4.1
guzzle_sphinx_theme==0.7.11
Cython>=0.25.2
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,8 @@ def build_dir():
"packages": ['khmer', 'khmer.tests', 'oxli', 'khmer._oxli'],
"package_data": {'khmer/_oxli': ['*.pxd']},
"package_dir": {'khmer.tests': 'tests'},
"install_requires": ['screed >= 1.0', 'bz2file'],
"setup_requires": ["pytest-runner>=2.0,<3dev", "setuptools>=18.0",
"Cython>=0.25.2"],
"install_requires": ['screed >= 1.0', 'bz2file', 'Cython>=0.25.2'],
"setup_requires": ["pytest-runner>=2.0,<3dev", "setuptools>=18.0"],
"extras_require": {':python_version=="2.6"': ['argparse>=1.2.1'],
'docs': ['sphinx', 'sphinxcontrib-autoprogram'],
'tests': ['pytest>=2.9'],
Expand Down

0 comments on commit acea494

Please sign in to comment.