Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update OVOS depdendencies for 0.x compat #144

Merged
merged 2 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading