python-pycomposefile/p_fix-version-number.patch

13 lines
514 B
Diff
Raw Permalink Normal View History

diff -Nru pycomposefile-0.0.32.orig/setup.py pycomposefile-0.0.32/setup.py
--- pycomposefile-0.0.32.orig/setup.py 2024-10-22 21:45:01.000000000 +0200
+++ pycomposefile-0.0.32/setup.py 2025-02-13 09:44:53.716839775 +0100
@@ -3,7 +3,7 @@
long_desc = open("README.md").read()
required = ['pyyaml'] # Comma seperated dependent libraries name
-version = os.environ.get("BUILD_TAG", "0.0.1a1").lstrip("v")
+version = os.environ.get("BUILD_TAG", "0.0.32").lstrip("v")
setuptools.setup(
name="pycomposefile",