summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2020-07-09 22:27:51 -0400
committerrsiddharth <rsd@gnu.org>2020-07-09 22:27:51 -0400
commita085111072ef1df95209d9b4ae56ccce1c8964af (patch)
tree29c42e0478b68c38178d588b863cbd010b7668e2
parentd575fc9b315ba844beefc1830e681c0b73ed7904 (diff)
setup.py: Update install_requires
I think mistune's upcoming version 2 might be not compatible with version 1. lpschedule-generator might not work with mistune version 2 or greater. So, specify lower and upper bounds for the mistune version.
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 2b3ebb7..3fc75ce 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@ config = {
'url': 'https://notabug.org/rsd/lpschedule-generator/',
'author': 'rsiddharth',
'author_email': 'rsd@gnu.org',
- 'install_requires': ['mistune', 'Jinja2', 'beautifulsoup4',
+ 'install_requires': ['mistune>=0.8,<1', 'Jinja2', 'beautifulsoup4',
'unidecode', 'icalendar', 'pytz'],
'tests_require': ['nose', 'mock'],
'test_suite': 'nose.collector',