From 0b9af8d6eccba793270338e87eb84cae28e9417f Mon Sep 17 00:00:00 2001 From: KV Date: Sun, 27 Aug 2023 18:55:38 +0200 Subject: [PATCH] Change version string to comply with PEP440 It seems "-dev" (normalized to ".dev") should only be directly followed by a number for different deveopment releases of the same version. See full description: https://peps.python.org/pep-0440/ --- src/wireviz/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wireviz/__init__.py b/src/wireviz/__init__.py index 68cde20d..937f136c 100644 --- a/src/wireviz/__init__.py +++ b/src/wireviz/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # Please don't import anything in this file to avoid issues when it is imported in setup.py -__version__ = "0.4-dev-refactored" +__version__ = "0.4-dev251" CMD_NAME = "wireviz" # Lower case command and module name APP_NAME = "WireViz" # Application name in texts meant to be human readable