Skip to content

Commit

Permalink
Use bqscales
Browse files Browse the repository at this point in the history
Co-authored-by: Johan Mabille <johan.mabille@gmail.com>
  • Loading branch information
JohanMabille authored and martinRenou committed Jan 28, 2021
1 parent 782b191 commit d07bd54
Show file tree
Hide file tree
Showing 72 changed files with 807 additions and 2,703 deletions.
2 changes: 1 addition & 1 deletion bqplot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@
"""

from bqscales.scales import *
from .figure import *
from .axes import *
from .marks import *
from .scales import *
from .toolbar import *
from .default_tooltip import *
from ._version import version_info, __version__
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,8 +53,8 @@
from ipywidgets import VBox
from ipywidgets import Image as ipyImage
from numpy import arange, issubdtype, array, column_stack, shape
from bqscales import Scale, LinearScale, Mercator
from .figure import Figure
from .scales 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 d07bd54

Please sign in to comment.