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

Commit 9cbfb18

Browse files
author
Greg Caporaso
committed
added upper bound to version, update is going to be bigger than I initially thought
1 parent bfcf54d commit 9cbfb18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

biab/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def expand_file(fp):
110110

111111
with open(fp) as f:
112112
lines = f.readlines()
113-
ast = cm.Parser().parse(''.join(lines))
113+
ast = cm.DocParser().parse(''.join(lines))
114114

115115
root = Node()
116116
root.file = fp

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
test_suite='nose.collector',
4646
packages=find_packages(),
4747
scripts=glob("scripts/*"),
48-
install_requires=['ipymd', 'PyYAML', 'CommonMark', 'click', 'jupyter',
48+
install_requires=['ipymd', 'PyYAML', 'CommonMark < 0.6.0', 'click', 'jupyter',
4949
'six', 'runipy', 'boto', 'markdown2'],
5050
extras_require={'test': ["nose >= 0.10.1", "pep8", "flake8"]},
5151
classifiers=classifiers,

0 commit comments

Comments
 (0)