Skip to content

Commit

Permalink
readthedocs: Dont require python-daemon for rtd
Browse files Browse the repository at this point in the history
See issues in #1342
  • Loading branch information
Tarrasch committed Oct 23, 2015
1 parent 6a04a12 commit 32a4509
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 32a4509

Please sign in to comment.