diff --git a/.github/workflows/build_tests.yml b/.github/workflows/build_tests.yml index 686d91d..378eec3 100644 --- a/.github/workflows/build_tests.yml +++ b/.github/workflows/build_tests.yml @@ -24,7 +24,7 @@ jobs: strategy: max-parallel: 2 matrix: - python-version: [ 3.7, 3.8, 3.9, "3.10" ] + python-version: [3.9, "3.10", "3.11"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/pipaudit.yml b/.github/workflows/pipaudit.yml index 9f2f3fb..47a05e9 100644 --- a/.github/workflows/pipaudit.yml +++ b/.github/workflows/pipaudit.yml @@ -11,7 +11,7 @@ jobs: strategy: max-parallel: 2 matrix: - python-version: [ 3.7, 3.8, 3.9, "3.10" ] + python-version: [3.9, "3.10", "3.11"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 69a78d3..2134dd2 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -33,7 +33,7 @@ jobs: strategy: max-parallel: 2 matrix: - python-version: [ 3.8, 3.9, "3.10" ] + python-version: [3.9, "3.10", "3.11"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/ovos_plugin_manager/templates/media.py b/ovos_plugin_manager/templates/media.py index 85e2538..f769b61 100644 --- a/ovos_plugin_manager/templates/media.py +++ b/ovos_plugin_manager/templates/media.py @@ -2,7 +2,7 @@ from ovos_bus_client.message import Message from ovos_utils.log import LOG -from ovos_utils.messagebus import FakeBus +from ovos_utils.fakebus import FakeBus from ovos_utils.ocp import MediaState, PlayerState, TrackState diff --git a/ovos_plugin_manager/templates/solvers.py b/ovos_plugin_manager/templates/solvers.py index 3c04b5e..bcf3a58 100644 --- a/ovos_plugin_manager/templates/solvers.py +++ b/ovos_plugin_manager/templates/solvers.py @@ -494,7 +494,8 @@ def retrieve_from_corpus(self, query: str, k: int = 3, lang: Optional[str] = Non """return top_k matches from indexed corpus""" res = [] for doc, score in self.query(query, lang, k=k): - LOG.debug(f"Rank {len(res) + 1} (score: {score}): {doc}") + # this log can be very spammy, only enable for debug during dev + #LOG.debug(f"Rank {len(res) + 1} (score: {score}): {doc}") if self.config.get("min_conf"): if score >= self.config["min_conf"]: res.append((score, doc))