Skip to content

Commit

Permalink
fix:bracket_expansion (#618)
Browse files Browse the repository at this point in the history
* fix:bracket_expansion

pull OpenVoiceOS/ovos-utils#317 into dependencies

* Update build_tests.yml

* failing tests

* Update requirements.txt
  • Loading branch information
JarbasAl authored Dec 6, 2024
1 parent e87af00 commit f7e3d5d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: [3.8, 3.9, "3.10", "3.11]
python-version: [3.8, 3.9, "3.10", "3.11"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions ovos_core/intent_services/stop_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from ovos_config.config import Configuration
from ovos_plugin_manager.templates.pipeline import PipelineMatch, PipelinePlugin
from ovos_utils import flatten_list
from ovos_utils.bracket_expansion import expand_options
from ovos_utils.bracket_expansion import expand_template
from ovos_utils.lang import standardize_lang_tag
from ovos_utils.log import LOG
from ovos_utils.parse import match_one
Expand All @@ -33,7 +33,7 @@ def load_resource_files(self):
self._voc_cache[lang2] = {}
for f in os.listdir(f"{base}/{lang}"):
with open(f"{base}/{lang}/{f}", encoding="utf-8") as fi:
lines = [expand_options(l) for l in fi.read().split("\n")
lines = [expand_template(l) for l in fi.read().split("\n")
if l.strip() and not l.startswith("#")]
n = f.split(".", 1)[0]
self._voc_cache[lang2][n] = flatten_list(lines)
Expand Down
4 changes: 2 additions & 2 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ combo-lock>=0.2.2, <0.4

padacioso>=1.0.0, <2.0.0
ovos-adapt-parser>=1.0.5, <2.0.0
ovos_ocp_pipeline_plugin>=1.0.7, <2.0.0
ovos_ocp_pipeline_plugin==1.0.7
ovos-common-query-pipeline-plugin>=1.0.5, <2.0.0

ovos-utils>=0.3.5,<1.0.0
ovos-utils[extras]>=0.6.0,<1.0.0
ovos_bus_client>=0.1.4,<2.0.0
ovos-plugin-manager>=0.5.6,<1.0.0
ovos-config>=0.0.13,<2.0.0
Expand Down

0 comments on commit f7e3d5d

Please sign in to comment.