From 8b50e8d3ad578002b16ee08917877d4691d5e593 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Fri, 4 Mar 2022 08:53:11 -0500 Subject: [PATCH] Fix version numbering to comply with PEP 440 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fbce3e1..f55fe88 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ rust_ext = RustExtension( setup( name = 'bdkpython', - version = '0.0.6-SNAPSHOT', + version = '0.0.6.dev', description="The Python language bindings for the bitcoindevkit", long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',