Skip to content

Commit 9fd57db

Browse files
authored
Update OVOS depdendencies for 0.x compat (#144)
* Update OVOS dependencies for 0.x compat. Refactor imports * Update skill.json --------- Co-authored-by: Daniel McKnight <[email protected]> Co-authored-by: NeonDaniel <[email protected]>
1 parent 5dccfdd commit 9fd57db

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
from ovos_utils.process_utils import RuntimeRequirements
4040
from ovos_utils.log import LOG, log_deprecation
4141
from ovos_utils.sound import play_audio
42-
from adapt.intent import IntentBuilder
4342
from lingua_franca.format import nice_duration, nice_time, nice_date_time
4443
from lingua_franca.parse import extract_duration, extract_datetime
4544
from lingua_franca.time import default_timezone
@@ -48,6 +47,7 @@
4847
from neon_utils.skills.neon_skill import NeonSkill
4948
from neon_utils.user_utils import get_user_prefs, get_message_user
5049
from ovos_workshop.decorators import intent_handler
50+
from ovos_workshop.intents import IntentBuilder
5151

5252
from skill_alerts.util import Weekdays, AlertState, MatchLevel, AlertPriority, WEEKDAYS, WEEKENDS, EVERYDAY
5353
from skill_alerts.util.alert import Alert, AlertType

requirements.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
json_database~=0.5
2-
neon-utils~=1.2
2+
# TODO: network patching dependency resolution
3+
neon-utils[network]~=1.2,>=1.11.1a3
34
combo_lock~=0.2
45
ovos-utils~=0.0, >=0.0.32
5-
ovos-bus-client~=0.0.3
6+
ovos-bus-client~=0.0,>=0.0.3
7+
ovos-workshop~=0.0,>=0.0.12

skill.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@
3232
"python": [
3333
"combo_lock~=0.2",
3434
"json_database~=0.5",
35-
"neon-utils~=1.2",
36-
"ovos-bus-client~=0.0.3",
37-
"ovos-utils~=0.0, >=0.0.32"
35+
"neon-utils[network]~=1.2,>=1.11.1a3",
36+
"ovos-bus-client~=0.0,>=0.0.3",
37+
"ovos-utils~=0.0, >=0.0.32",
38+
"ovos-workshop~=0.0,>=0.0.12"
3839
],
3940
"system": {},
4041
"skill": []

0 commit comments

Comments
 (0)