Skip to content
This repository has been archived by the owner on Jul 20, 2021. It is now read-only.

Commit

Permalink
added upper bound to version, update is going to be bigger than I ini…
Browse files Browse the repository at this point in the history
…tially thought
  • Loading branch information
gregcaporaso committed Jan 15, 2016
1 parent bfcf54d commit 9cbfb18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion biab/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def expand_file(fp):

with open(fp) as f:
lines = f.readlines()
ast = cm.Parser().parse(''.join(lines))
ast = cm.DocParser().parse(''.join(lines))

root = Node()
root.file = fp
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
test_suite='nose.collector',
packages=find_packages(),
scripts=glob("scripts/*"),
install_requires=['ipymd', 'PyYAML', 'CommonMark', 'click', 'jupyter',
install_requires=['ipymd', 'PyYAML', 'CommonMark < 0.6.0', 'click', 'jupyter',
'six', 'runipy', 'boto', 'markdown2'],
extras_require={'test': ["nose >= 0.10.1", "pep8", "flake8"]},
classifiers=classifiers,
Expand Down

0 comments on commit 9cbfb18

Please sign in to comment.