Skip to content

Commit 7ce021b

Browse files
Move insardev.UI to insardev_toolkit
1 parent f8b11bd commit 7ce021b

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

insardev/insardev/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# See the LICENSE file in the insardev directory for license terms.
99
# Professional use requires an active per-seat subscription at: https://patreon.com/pechnikov
1010
# ----------------------------------------------------------------------------
11-
__version__ = '2026.3.8'
11+
__version__ = '2026.3.8.post1'
1212

1313
# processing functions
1414
from .Stack import Stack
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ def __init__(self, mode: str = 'dark', dpi=150):
55
Set dark mode styling for matplotlib plots and Jupyter widgets.
66
77
Example:
8-
from insardev.UI import UI
8+
from insardev_toolkit.UI import UI
99
UI('dark')
1010
"""
1111
import matplotlib.pyplot as plt

insardev_toolkit/insardev_toolkit/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
# See the LICENSE file in the insardev_toolkit directory for license terms.
99
# ----------------------------------------------------------------------------
10-
__version__ = '2026.3.8'
10+
__version__ = '2026.3.8.post1'
1111

1212
# unified progress indicators
1313
from .progressbar_joblib import progressbar_joblib
@@ -30,3 +30,5 @@
3030
from .MultiInstanceManager import MultiInstanceManager
3131
# downloading tools
3232
from .HTTP import download, unzip
33+
# Jupyter notebook UI styling
34+
from .UI import UI

0 commit comments

Comments
 (0)