Skip to content

Commit

Permalink
Update OVOS depdencies and fix imports (#26)
Browse files Browse the repository at this point in the history
* Update `open_intent_envelope` import to new location
Update `ovos-workshop` dependency to allow 0.x resolution

* Remove deprecated import

---------

Co-authored-by: Daniel McKnight <[email protected]>
  • Loading branch information
NeonDaniel and NeonDaniel authored Sep 17, 2024
1 parent 312039e commit ba2faa4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions neon_minerva/intent_services/adapt.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@

from typing import Optional
from adapt.engine import IntentDeterminationEngine
from ovos_utils.intents.intent_service_interface import open_intent_envelope
from ovos_workshop.intents import open_intent_envelope
from ovos_utils.log import LOG
from ovos_utils.messagebus import FakeBus, get_message_lang
from ovos_utils.messagebus import FakeBus
from ovos_bus_client.util import get_message_lang

from neon_minerva.exceptions import IntentNotMatched, ConfidenceTooLow
from neon_minerva.intent_services import IntentMatch
Expand Down
3 changes: 2 additions & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
click~=8.0
click-default-group~=1.2
ovos-utils~=0.0, >=0.0.35
ovos-workshop~=0.0.15
ovos-workshop~=0.0,>=0.0.15
ovos-bus-client~=0.0
padacioso~=0.1
pyyaml>=5.4,<7.0
# PyYaml 5.4 support left for ovos-core 0.0.7 compat

0 comments on commit ba2faa4

Please sign in to comment.