changeset 489:fa0d2a4783fa default tip

install: use PEP-440 compatible version in `setup`: setuptools from version v66 doesn't accept anymore non PEP-440 compatible version. This is a Q&D fix, move to `pyproject.toml` with proper versioning as for Libervia backend should be done sooner than later.
author Goffi <goffi@goffi.org>
date Fri, 12 Jan 2024 23:46:24 +0100
parents c41f37f1b51c
children
files setup.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Sun Oct 02 16:46:04 2022 +0200
+++ b/setup.py	Fri Jan 12 23:46:24 2024 +0100
@@ -53,7 +53,7 @@
 
 setup(
     name=NAME,
-    version=VERSION,
+    version=VERSION.replace('D', '.dev0'),
     description="XMPP Publish-Subscribe Service Component, build for the need of "
                 "the « Salut à Toi » project",
     author="Association « Salut à Toi »",