graphcanvas icon indicating copy to clipboard operation
graphcanvas copied to clipboard

Results 6 graphcanvas issues
Sort by recently updated
recently updated
newest added

This is the same license used in some other Enthought projects. The BSD license requires all copies of the source code to include the license text. Further, without a license...

The README example fails with a `KeyError`: ```python >>> from graphcanvas.api import GraphView, graph_from_dict >>> g = {'a':['b'], 'b':['c', 'd'], 'c':[], 'd':[]} >>> GraphView(graph=graph_from_dict(g)) Traceback (most recent call last): File...

The following failure was spotted in a Travis CI run: (https://app.travis-ci.com/github/enthought/graphcanvas/builds/234724835), during the run for the pyqt (i.e., Qt 4) toolkit, on PR #31. It looks as though there may...

- [ ] Expand the contents of the README to include more information about installation and dependencies (including optional dependencies) - [ ] Clean up the `setup.py` file and make...

`pygraphviz` has recently become un-`pip install`able in continuous integration (and for me locally on OSX and linux). Some effort will be needed to figure out what the correct procedure for...

The tools fire off `print` statements during events by default. As pointed out in [#8 (comment)](https://github.com/enthought/graphcanvas/pull/8#discussion_r81304664), it would be preferable to replace the methods holding these print statements with `Callable`...