-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Visible parameter for luigi.Parameters #2278
Changes from all commits
f814a89
9d83550
4059db0
debf4d3
81b268a
2530c0b
944d143
a330552
886179b
09b6c0a
ef6ee62
de8431e
88329f4
2980ffd
6437002
b4f9d9e
07da7df
82bbabc
3580e0a
286c79c
4ac9a08
41d67c0
a77b906
efac968
4a44342
ef47fdc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
# the License. | ||
|
||
import os | ||
import sys | ||
|
||
from setuptools import setup | ||
|
||
|
@@ -48,6 +49,9 @@ def get_static_files(path): | |
install_requires.remove('python-daemon<3.0') | ||
install_requires.append('sphinx>=1.4.4') # Value mirrored in doc/conf.py | ||
|
||
if sys.version_info < (3, 4): | ||
install_requires.append('enum34>1.1.0') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not strongly against this. But it will break for some users who don't install the package the normal way. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @dlstadther, what do you think? Maybe it's time to request users to always install through a package manager, hopefully not many will oppose this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How does one use luigi without either PyPi or running So long as people can appropriately use a released version from PyPi or bleeding edge through manual install, I'm 👍 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well, you could just download the source filles and set your There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think people will complain having to install with a package manager or manually setup.py install/develop |
||
|
||
setup( | ||
name='luigi', | ||
version='2.7.6', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice line! Makes it clear what this PR is all about!