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

Remove extra top-level API import #301

Closed
wants to merge 3 commits into from
Closed
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 mycroft/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#
from os.path import abspath, dirname, join
from ovos_config.config import Configuration
from mycroft.api import Api # TODO - why is this here? nothing should be using it, can it be removed safely?
# from mycroft.api import Api # TODO - why is this here? nothing should be using it, can it be removed safely?
from mycroft.messagebus.message import Message

from ovos_utils.intents import AdaptIntent, IntentBuilder, Intent
Expand Down
5 changes: 3 additions & 2 deletions requirements/minimal.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ mycroft-messagebus-client~=0.9,!=0.9.2,!=0.9.3
combo-lock~=0.2
padacioso~=0.1.2

ovos-utils~=0.0, >=0.0.31a1
# TODO - accidental breaking change 0.0.31a7 (maybe only unittest mocks)
ovos-utils==0.0.31a6
ovos-plugin-manager~=0.0, >=0.0.22
ovos-config~=0.0,>=0.0.5
ovos-lingua-franca~=0.4, >=0.4.6
ovos_backend_client~=0.0, >=0.0.5
ovos_workshop~=0.0, >=0.0.11
ovos_workshop~=0.0, >=0.0.11
3 changes: 2 additions & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ padaos~=0.1

ovos_backend_client~=0.0, >=0.0.5
ovos-config~=0.0,>=0.0.5
ovos-utils~=0.0, >=0.0.31a1
# TODO - accidental breaking change 0.0.31a7 (maybe only unittest mocks)
ovos-utils==0.0.31a6
ovos-plugin-manager~=0.0, >=0.0.22
ovos_workshop~=0.0, >=0.0.11
ovos_PHAL~=0.0, >=0.0.2
Expand Down