Skip to content

Commit

Permalink
MNT: Uncap dependencies (#998)
Browse files Browse the repository at this point in the history
* MNT: Unpin bokeh

* FIX: Use width/height instead of plot_width/plot_height

* MNT: Unpin jinja2
  • Loading branch information
effigies authored Nov 20, 2023
1 parent 2cb05ab commit a422dc3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ classifiers = [
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
"bokeh<2.3.0",
"bokeh",
"mapca>=0.0.3",
"matplotlib",
"nibabel>=2.5.1",
Expand All @@ -29,7 +29,6 @@ dependencies = [
"scikit-learn>=0.21",
"scipy>=1.2.0",
"threadpoolctl",
"jinja2==3.0.1",
]
dynamic = ["version"]

Expand Down
12 changes: 6 additions & 6 deletions tedana/reporting/dynamic_figures.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ def _create_kr_plt(comptable_cds, kappa_elbow=None, rho_elbow=None):
]
)
fig = plotting.figure(
plot_width=400,
plot_height=400,
width=400,
height=400,
tools=["tap,wheel_zoom,reset,pan,crosshair,save", kr_hovertool],
title="Kappa / Rho Plot",
)
Expand Down Expand Up @@ -276,8 +276,8 @@ def _create_sorted_plt(
]
)
fig = plotting.figure(
plot_width=400,
plot_height=400,
width=400,
height=400,
tools=["tap,wheel_zoom,reset,pan,crosshair,save", hovertool],
title=title,
)
Expand Down Expand Up @@ -319,8 +319,8 @@ def _create_sorted_plt(

def _create_varexp_pie_plt(comptable_cds):
fig = plotting.figure(
plot_width=400,
plot_height=400,
width=400,
height=400,
title="Variance Explained View",
tools=["hover,tap,save"],
tooltips=[
Expand Down

0 comments on commit a422dc3

Please sign in to comment.