From 6a04a1287444b6d5e358f8dbfd800a28969e39fe Mon Sep 17 00:00:00 2001 From: Arash Rouhani Date: Fri, 23 Oct 2015 13:30:45 +0200 Subject: [PATCH 1/2] setup.py: Remove pyparsing as dependency Not used since spotify/luigi#1309 --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 8553750dc5..4a6111020c 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,6 @@ def get_static_files(path): long_description = readme_note + fobj.read() install_requires = [ - 'pyparsing<3.0', 'tornado<5.0', 'python-daemon<3.0', ] From 32a4509d1aca43abbf77d62324a6fe82ad15904c Mon Sep 17 00:00:00 2001 From: Arash Rouhani Date: Fri, 23 Oct 2015 13:32:57 +0200 Subject: [PATCH 2/2] readthedocs: Dont require python-daemon for rtd See issues in spotify/luigi#1342 --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4a6111020c..0aed00c35a 100644 --- a/setup.py +++ b/setup.py @@ -42,8 +42,10 @@ def get_static_files(path): ] if os.environ.get('READTHEDOCS', None) == 'True': - install_requires.append('sqlalchemy') # So that we can build documentation for luigi.db_task_history and luigi.contrib.sqla + install_requires.append('sqlalchemy') + # readthedocs don't like python-daemon, see #1342 + install_requires.remove('python-daemon<3.0') setup( name='luigi',