Skip to content

Commit

Permalink
pin older ovos utils until unittests updated
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Oct 12, 2023
1 parent 37480eb commit e9f6f3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ovos_core/intent_services/converse_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,9 @@ def handle_ack(msg):
skill_id = msg.data["skill_id"]

# validate the converse pong
if all(skill_id not in want_converse,
if all((skill_id not in want_converse,
msg.data.get("can_handle", True),
skill_id in active_skills):
skill_id in active_skills)):
want_converse.append(skill_id)

if skill_id not in skill_ids: # track which answer we got
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ padacioso~=0.2, >=0.2.1a8
adapt-parser>=1.0.0, <2.0.0

ovos-bus-client<0.1.0, >=0.0.6a10
ovos-utils<0.1.0, >=0.0.36a8
ovos-utils<0.1.0, ==0.0.36a8
ovos-plugin-manager<0.1.0, >=0.0.24a9
ovos-config~=0.0,>=0.0.11a13
ovos-lingua-franca>=0.4.7
Expand Down

0 comments on commit e9f6f3c

Please sign in to comment.