MLBazaar / MLBlocks

A library for composing end-to-end tunable machine learning pipelines.
https://mlbazaar.github.io/MLBlocks
MIT License
114 stars 35 forks source link

Add diagram #125

Closed erica-chiu closed 4 years ago

erica-chiu commented 4 years ago

Resolves #113

csala commented 4 years ago

Hey @erica-chiu ! Thanks for the PR. It seems like travis is failing because it is missing the graphviz dependency when running the tests.

Would you mind moving the 'graphviz>=0.9', specification in setup.py (line 59) from development_requires (you can remove it from here) to install_requires? Also, while you are at it, can you add an upper maximum and make it 'graphviz>=0.9,<1',?

It should look like this:

install_requires = [
    'graphviz>=0.9,<1',
]