From 6f84a4b10ea50e1527949067e2e384f27512d842 Mon Sep 17 00:00:00 2001 From: Malcolm VanOrder Date: Wed, 31 Jan 2024 11:34:28 -0500 Subject: [PATCH] Update setup.py for PEP 440 For versions of setuptools >66 legacy version names are not allowed. This prevents pip from installing drawio_network_plot. Permitted characters in PEP 440 are: - ASCII letters ([a-zA-Z]) - ASCII digits ([0-9]) - periods (.) Signed-off-by: Malcolm VanOrder --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2770d09..bede589 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( # the name must match the folder name 'verysimplemodule' name="drawio_network_plot", - version="0.0.02 Beta", + version="0.0.02Beta", author="Amr ElHusseiny", author_email="amroashram@hotmail.com", description=DESCRIPTION,