Skip to content

Commit

Permalink
Merge pull request #1343 from Tarrasch/luigi_packaging_changes
Browse files Browse the repository at this point in the history
Luigi packaging changes
  • Loading branch information
Tarrasch committed Oct 23, 2015
2 parents 21acf07 + 32a4509 commit ca78b1a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,15 @@ def get_static_files(path):
long_description = readme_note + fobj.read()

install_requires = [
'pyparsing<3.0',
'tornado<5.0',
'python-daemon<3.0',
]

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 ca78b1a

Please sign in to comment.