From f4104cff46584d865091b0af7afe03bed245052b Mon Sep 17 00:00:00 2001 From: outmaneuver <72673084+outmaneuver@users.noreply.github.com> Date: Wed, 23 Oct 2024 00:47:49 +0300 Subject: [PATCH] Fix AttributeError: module 'collections' has no attribute 'Hashable' Related to #3 Update the PyYAML version in `requirements.txt` to the latest version. * Add `pyyaml>=6.0.1` to the `requirements.txt` file to resolve the AttributeError related to the 'collections' module's 'Hashable' attribute. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/ShoneGK/ChatterPy/issues/3?shareId=XXXX-XXXX-XXXX-XXXX). --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 1d8dd15..c9da844 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ python-dateutil>=2.8 sqlalchemy>=1.3,<1.4 pytz spacy>=3.5 +pyyaml>=6.0.1