From 9a17d966d31a71d931ba83375444e30a12525fcd Mon Sep 17 00:00:00 2001 From: Believethehype <1097224+believethehype@users.noreply.github.com> Date: Mon, 30 Sep 2024 20:36:45 +0200 Subject: [PATCH] update to nostr sdk 0.35.1 (db patch) --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 3ae9475..b3db92c 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -VERSION = '0.9.3' +VERSION = '0.9.4' DESCRIPTION = 'A framework to build and run Nostr NIP90 Data Vending Machines' LONG_DESCRIPTION = ('A framework to build and run Nostr NIP90 Data Vending Machines. See the github repository for more information') @@ -14,7 +14,7 @@ setup( long_description=LONG_DESCRIPTION, packages=find_packages(include=['nostr_dvm', 'nostr_dvm.*']), - install_requires=["nostr-sdk==0.35.0", + install_requires=["nostr-sdk==0.35.1", "bech32==1.2.0", "pycryptodome==3.20.0", "yt-dlp==2024.5.27",