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

fix: drop lingua-franca #17

Merged
merged 2 commits into from
Nov 12, 2024
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 requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ovos-utils
ovos-workshop
ovos-lingua_franca
ovos-number-parser>=0.0.1,<1.0.0
icepool
2 changes: 1 addition & 1 deletion skill.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"requirements": {
"python": [
"icepool",
"ovos-lingua_franca",
"ovos-number-parser>=0.0.1,<1.0.0",
"ovos-utils",
"ovos-workshop"
],
Expand Down
3 changes: 2 additions & 1 deletion skill_randomness/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@

from ovos_bus_client.message import Message
from ovos_workshop.decorators import intent_handler
from lingua_franca.parse import extract_number
from ovos_number_parser import extract_number
from ovos_workshop.skills import OVOSSkill


class RandomnessSkill(OVOSSkill):
"""A skill for all kinds of chance - make a choice, roll a die, flip a coin, etc."""

Expand Down
Loading