From d0a98ed7c497587d30bb5cc179df6c95f04baa64 Mon Sep 17 00:00:00 2001 From: Believethehype Date: Fri, 15 Dec 2023 09:43:43 +0100 Subject: [PATCH] fixing test client --- setup.py | 3 ++- tests/test_dvm_client.py | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index f6b840d..fcf9d09 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,8 @@ setup( "requests==2.31.0", "instaloader==4.10.1", "pytube==15.0.0", - "moviepy==2.0.0.dev2" + "moviepy==2.0.0.dev2", + "zipp==3.17.0" ], keywords=['nostr', 'nip90', 'dvm', 'data vending machine'], url="https://github.com/believethehype/nostrdvm", diff --git a/tests/test_dvm_client.py b/tests/test_dvm_client.py index 0737d5e..298066e 100644 --- a/tests/test_dvm_client.py +++ b/tests/test_dvm_client.py @@ -7,9 +7,9 @@ import dotenv from nostr_sdk import Keys, Client, Tag, EventBuilder, Filter, HandleNotification, Timestamp, nip04_decrypt, \ nip04_encrypt -from utils.dvmconfig import DVMConfig -from utils.nostr_utils import send_event, check_and_set_private_key -from utils.definitions import EventDefinitions +from nostr_dvm.utils.dvmconfig import DVMConfig +from nostr_dvm.utils.nostr_utils import send_event, check_and_set_private_key +from nostr_dvm.utils.definitions import EventDefinitions # TODO HINT: Best use this path with a previously whitelisted privkey, as zapping events is not implemented in the lib/code