Skip to content

Commit

Permalink
Use bqscales
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Aug 20, 2021
1 parent 2d6cbc9 commit fc592fd
Show file tree
Hide file tree
Showing 75 changed files with 2,930 additions and 3,333 deletions.
3 changes: 2 additions & 1 deletion bqplot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,11 @@
"""

from bqscales.scales import * # noqa
from .figure import * # noqa
from .axes import * # noqa
from .marks import * # noqa
from .scales import * # noqa
from bqscales import * # noqa
from .toolbar import * # noqa
from .default_tooltip import * # noqa
from ._version import version_info, __version__ # noqa
Expand Down
2 changes: 1 addition & 1 deletion bqplot/axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from traittypes import Array
from ipywidgets import Widget, Color, widget_serialization

from .scales import Scale, ColorScale
from bqscales import Scale, ColorScale
from .traits import array_serialization, array_dimension_bounds
from ._version import __frontend_version__

Expand Down
2 changes: 1 addition & 1 deletion bqplot/figure.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
)
from ipywidgets import DOMWidget, register, widget_serialization

from .scales import Scale, LinearScale
from bqscales import Scale, LinearScale
from .interacts import Interaction
from .marks import Mark
from .axes import Axis
Expand Down
2 changes: 1 addition & 1 deletion bqplot/interacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
from traittypes import Array
from ipywidgets import Widget, Color, widget_serialization, register

from .scales import Scale
from bqscales import Scale
from .traits import Date, array_serialization, _array_equal
from .marks import Lines
from ._version import __frontend_version__
Expand Down
2 changes: 1 addition & 1 deletion bqplot/marks.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
from numpy import histogram
import numpy as np

from .scales import Scale, OrdinalScale, LinearScale
from bqscales import Scale, OrdinalScale, LinearScale
from .traits import (Date, array_serialization,
array_squeeze, array_dimension_bounds, array_supported_kinds)
from ._version import __frontend_version__
Expand Down
2 changes: 1 addition & 1 deletion bqplot/pyplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
from ipywidgets import Image as ipyImage
from numpy import arange, issubdtype, array, column_stack, shape
from .figure import Figure
from .scales import Scale, LinearScale, Mercator
from bqscales import Scale, LinearScale, Mercator
from .axes import Axis
from .marks import (Lines, Scatter, ScatterGL, Hist, Bars, OHLC, Pie, Map, Image,
Label, HeatMap, GridHeatMap, topo_load, Boxplot, Bins)
Expand Down

0 comments on commit fc592fd

Please sign in to comment.