Skip to content

Commit

Permalink
Update dependencies to allow latest OVOS packages (#201)
Browse files Browse the repository at this point in the history
# Description
Update OVOS dependencies to allow 0.1+

# Issues
Related to NeonGeckoCom/NeonCore#708

# Other Notes
<!-- Note any breaking changes, WIP changes, requests for input, etc.
here -->

---------

Co-authored-by: Daniel McKnight <[email protected]>
  • Loading branch information
NeonDaniel and NeonDaniel authored Sep 13, 2024
1 parent 07fe1a0 commit 51361ad
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
run: |
pytest tests/unit_tests.py --doctest-modules --junitxml=tests/unit-test-results.xml
- name: Upload Unit test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: unit-test-results
name: unit-test-results-${{ matrix.python-version }}
path: tests/unit-test-results.xml
- name: Test API Methods
run: |
pytest tests/api_method_tests.py --doctest-modules --junitxml=tests/api-method-test-results.xml
- name: Upload API Method test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: api-method-test-results
name: api-method-test-results-${{ matrix.python-version }}
path: tests/api-method-test-results.xml
6 changes: 3 additions & 3 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ovos-dinkum-listener==0.0.3a16
ovos-bus-client~=0.0.3
ovos-bus-client~=0.0,>=0.0.3
ovos-utils~=0.0,>=0.0.30
ovos-plugin-manager~=0.0.23
ovos-plugin-manager~=0.0,>=0.0.23
click~=8.0
click-default-group~=1.2
neon-utils[network,audio]~=1.9
ovos-config~=0.0.7
ovos-config~=0.0,>=0.0.7

ovos-vad-plugin-webrtcvad~=0.0.1
ovos-ww-plugin-vosk~=0.1
Expand Down
2 changes: 1 addition & 1 deletion tests/unit_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def test_ovos_plugin_compat(self):
"ovos-stt-plugin-server": {"url": "https://0.0.0.0:8080/stt"}}
)
self.assertIsInstance(non_streaming, STT)
self.assertEqual(non_streaming.url, "https://0.0.0.0:8080/stt")
self.assertEqual(non_streaming.config['url'], "https://0.0.0.0:8080/stt")


class ServiceTests(unittest.TestCase):
Expand Down

0 comments on commit 51361ad

Please sign in to comment.