Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion molplotly/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@
import pandas as pd
import numpy as np
from dash import Input, Output, dcc, html, no_update
from jupyter_dash import JupyterDash
import dash
from packaging import version
if version.parse(dash.__version__) >= version.parse("2.11"):
from dash import Dash as JupyterDash
else:
from jupyter_dash import JupyterDash
from pandas.core.groupby import DataFrameGroupBy
from plotly.graph_objects import Figure
import plotly.graph_objects as go
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"jupyter-dash>=0.4.2",
"plotly>=5.0.0",
"rdkit-pypi>=2021.9.4",
"packaging",
"pandas",
"ipykernel",
"nbformat",
Expand Down
1 change: 1 addition & 0 deletions setup_pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"jupyter-dash>=0.4.2",
"plotly>=5.0.0",
"rdkit-pypi>=2021.9.4",
"packaging"
"pandas",
"ipykernel",
"nbformat",
Expand Down