Skip to content

Commit

Permalink
Merge pull request #904 from martinRenou/scale
Browse files Browse the repository at this point in the history
Use bqscales
  • Loading branch information
martinRenou committed Aug 25, 2021
2 parents 1eb6d3b + 071aaa2 commit 8bb2279
Show file tree
Hide file tree
Showing 75 changed files with 2,929 additions and 3,317 deletions.
2 changes: 1 addition & 1 deletion bqplot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
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 8bb2279

Please sign in to comment.