Bump dependency on commonmark to >= 0.8.1

In #118, there was a change made to rename all commonmark imports from `commonmark` to `CommonMark` due to a breaking change to the package name in that dependency in version 0.8.1. However, the dependency on `commonmark` wasn't updated, which means that people pulling in commonmark >= 0.7.3 and < 0.8.1 are experiencing issues while using recommonmark. This updates the versioned dependency accordingly to resolve this issue.
This commit is contained in:
Logan Rosen 2019-03-18 20:52:17 -04:00 committed by GitHub
parent 7d7d5d0b88
commit 150311c844
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ setup(
'License :: OSI Approved :: MIT License',
],
install_requires=[
'commonmark>=0.7.3',
'commonmark>=0.8.1',
'docutils>=0.11',
'sphinx>=1.3.1',
],