Skip to content

Commit

Permalink
Update OVOS depdendencies for 0.x compat (#144)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
3 people authored Sep 17, 2024
1 parent 5dccfdd commit 9fd57db
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
from ovos_utils.process_utils import RuntimeRequirements
from ovos_utils.log import LOG, log_deprecation
from ovos_utils.sound import play_audio
from adapt.intent import IntentBuilder
from lingua_franca.format import nice_duration, nice_time, nice_date_time
from lingua_franca.parse import extract_duration, extract_datetime
from lingua_franca.time import default_timezone
Expand All @@ -48,6 +47,7 @@
from neon_utils.skills.neon_skill import NeonSkill
from neon_utils.user_utils import get_user_prefs, get_message_user
from ovos_workshop.decorators import intent_handler
from ovos_workshop.intents import IntentBuilder

from skill_alerts.util import Weekdays, AlertState, MatchLevel, AlertPriority, WEEKDAYS, WEEKENDS, EVERYDAY
from skill_alerts.util.alert import Alert, AlertType
Expand Down
6 changes: 4 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
json_database~=0.5
neon-utils~=1.2
# TODO: network patching dependency resolution
neon-utils[network]~=1.2,>=1.11.1a3
combo_lock~=0.2
ovos-utils~=0.0, >=0.0.32
ovos-bus-client~=0.0.3
ovos-bus-client~=0.0,>=0.0.3
ovos-workshop~=0.0,>=0.0.12
7 changes: 4 additions & 3 deletions skill.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@
"python": [
"combo_lock~=0.2",
"json_database~=0.5",
"neon-utils~=1.2",
"ovos-bus-client~=0.0.3",
"ovos-utils~=0.0, >=0.0.32"
"neon-utils[network]~=1.2,>=1.11.1a3",
"ovos-bus-client~=0.0,>=0.0.3",
"ovos-utils~=0.0, >=0.0.32",
"ovos-workshop~=0.0,>=0.0.12"
],
"system": {},
"skill": []
Expand Down

0 comments on commit 9fd57db

Please sign in to comment.