django-sql-explorer icon indicating copy to clipboard operation
django-sql-explorer copied to clipboard

Add pie and line chart tabs to query result preview

Open eeriksp opened this issue 3 years ago • 2 comments

eeriksp avatar Jul 27 '22 23:07 eeriksp

@marksweb, thank you for amendments, they have all been incorporated now. Anything else you would like to change?

eeriksp avatar Aug 02 '22 07:08 eeriksp

@eeriksp Just realised, this needs the setup.py updating to handle the optional dependencies added here.

There's a good example here; https://github.com/anymail/django-anymail/blob/main/setup.py#L62

At the moment we've got;

extras_require={
        "xls": [
            'xlsxwriter>=1.2.1'
        ]
    },

So this could go in with the feature name;

extras_require={
        "graphs": [
            'matplotlib<4',
            'seaborn<0.12'
        ]
        "xls": [
            'xlsxwriter>=1.2.1'
        ]
    },

marksweb avatar Aug 18 '22 10:08 marksweb