Skip to content

Commit eadfc4c

Browse files
committed
bump oold version
1 parent a483159 commit eadfc4c

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

setup.cfg

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ install_requires =
5353
pyyaml
5454
pyld
5555
rdflib
56-
oold>=0.7.1
56+
oold>=0.8.0
5757

5858
[options.packages.find]
5959
where = src
@@ -65,6 +65,10 @@ exclude =
6565
# `pip install awl[PDF]` like:
6666
# PDF = ReportLab; RXP
6767

68+
# Human-in-the-loop (HITL) support
69+
hitl =
70+
oold[UI-panel]
71+
6872
# Add here dev requirements (semicolon/line-separated)
6973
dev =
7074
tox

src/awl/hitl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
from oold.model import LinkedBaseModel
1212
from oold.model.v1 import LinkedBaseModel as LinkedBaseModel_v1
13-
from oold.ui.panel.anywidget_vite.jsoneditor import OswEditor
13+
from oold.ui.panel import OoldEditor
1414

1515
jupyterlite = False
1616
if sys.platform == "emscripten":
@@ -27,7 +27,7 @@ def __init__(self, **params):
2727
"""This is a human-in-the-loop application.
2828
Please fill in the required fields and click 'Save' to proceed.""" # noqa
2929
)
30-
self.jsoneditor = OswEditor(max_height=500, max_width=800)
30+
self.jsoneditor = OoldEditor(max_height=500, max_width=800)
3131

3232
self.start_btn = pn.widgets.Button(
3333
css_classes=["start_btn"], name="Start", button_type="primary"

0 commit comments

Comments
 (0)