-
Notifications
You must be signed in to change notification settings - Fork 94
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
proposal: meta package #4158
proposal: meta package #4158
Changes from all commits
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 |
---|---|---|
|
@@ -73,6 +73,7 @@ def find_version(*file_paths): | |
] | ||
|
||
extra_requires = { | ||
# these are optional dependencies which unlock extra functionality | ||
'empy': [ | ||
'EmPy==3.3.*' | ||
], | ||
|
@@ -90,6 +91,13 @@ def find_version(*file_paths): | |
'main_loop-log_memory': [ | ||
'pympler', | ||
'matplotlib' | ||
], | ||
# these are other cylc components within the cylc meta-package | ||
'uiserver': [ | ||
'cylc-uiserver==0.3.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. Doesn't it mean Not sure whether it will always work (i.e. 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. Good point, I was thinking (not very deeply!) that we'd have to remove the cylc dependency from the UIS, but that doesn't make sense since it is a real code dependency. 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 think we are re-using the protobuf schema and some GraphQL code too (also some ID parsing maybe?). 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. The UI Server imports the Protobuf and GraphQL schema from cylc-flow directly. 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. Not sure whether circular imports are problematic, will have to do some reading. |
||
'rose': [ | ||
'cylc-rose==0.1.1' | ||
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. Ditto the above here, for circular dependency. |
||
] | ||
} | ||
extra_requires['all'] = ( | ||
|
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.
Renames the PyPi distribution
cylc-flow
->cylc
.