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 dependencies and config references #22

Merged
merged 2 commits into from
Jul 22, 2022
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 ovos_workshop/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from os.path import isdir, exists

from mycroft_bus_client.message import dig_for_message
from ovos_config.config import read_mycroft_config
from ovos_utils import get_handler_name
from ovos_utils.configuration import read_mycroft_config
from ovos_utils.dialog import join_list, load_dialogs, get_dialog
from ovos_utils.enclosure.api import EnclosureAPI
from ovos_utils.events import *
Expand Down
3 changes: 1 addition & 2 deletions ovos_workshop/skills/intent_provider.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from threading import Event
from time import time as get_time, sleep
from ovos_utils.log import LOG
from ovos_utils.configuration import update_mycroft_config
from ovos_utils.messagebus import Message
from ovos_workshop.skills.ovos import OVOSFallbackSkill
from ovos_utils.configuration import read_mycroft_config
from ovos_config.config import read_mycroft_config, update_mycroft_config


class BaseIntentEngine:
Expand Down
3 changes: 2 additions & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ovos_utils~=0.0, >=0.0.21a4
ovos_utils~=0.0, >=0.0.23
ovos_config~=0.0,>=0.0.4
ovos_plugin_common_play

# optional but improves fuzzy matching and silences logs
Expand Down
4 changes: 3 additions & 1 deletion test/license_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
'psutil': 'BSD3'
}
# explicitly allow these packages that would fail otherwise
whitelist = []
whitelist = [
'python-dateutil' # Apache Software License, BSD License (Dual License)
]

# validation flags
allow_nonfree = False
Expand Down