# HG changeset patch # User Goffi # Date 1705099584 -3600 # Node ID fa0d2a4783fa441ba25ba80e4089962d45ee71ad # Parent c41f37f1b51c85d0f2963f92e6c18444e5724154 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. diff -r c41f37f1b51c -r fa0d2a4783fa setup.py --- 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 »",