-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support for bokeh 3.1.0 (>2.0.0) (#153) * Fix range args with value None * Pass range start / end only if not None * Fix font value for bokeh>=2.3 * Undo pinning bokeh to <2.3.0 * Workaround for select(CategoricalColorMapper) bug - bug in bokeh>=3.0.0 - bokeh/bokeh#13015 * - Drop python 3.6 and 3.7 from tox testing - Update version to 4.0.0 * Try to add python 3.11 * Remove 3.11 * Update requirements * Updated dev requirements * Reformat and change back flake8 version * Re-ran example notebook --------- Co-authored-by: Quoc Duong Bui <[email protected]>
- Loading branch information
1 parent
59df367
commit b518f1b
Showing
22 changed files
with
2,839 additions
and
4,249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# flake8: noqa | ||
"""Top-level package for chartify.""" | ||
from chartify._core.chart import Chart | ||
from chartify._core.radar_chart import RadarChart | ||
|
@@ -21,8 +22,8 @@ | |
from chartify import examples | ||
|
||
__author__ = """Chris Halpert""" | ||
__email__ = '[email protected]' | ||
__version__ = '3.1.0' | ||
__email__ = "[email protected]" | ||
__version__ = "4.0.0" | ||
|
||
_IPYTHON_INSTANCE = False | ||
|
||
|
@@ -44,7 +45,7 @@ def set_display_settings(): | |
if curstate().notebook_type is None: | ||
# Inline resources uses bokeh.js from the local version. | ||
# This enables offline usage. | ||
output_notebook(Resources('inline'), hide_banner=True) | ||
output_notebook(Resources("inline"), hide_banner=True) | ||
|
||
|
||
set_display_settings() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.