From 89f3b8631ae68c8447b19811087d2a137f80819f Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Thu, 6 Jun 2024 19:14:51 -0700 Subject: [PATCH] Don't update verison automatically, it doesn't work right --- pyproject.toml | 4 ++-- src/rtl_manifest/__init__.py | 5 ----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f5c434b..a5ab508 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,8 +34,8 @@ name = "rtl-manifest" # REQUIRED, is the only field that cannot be marked as dy # For a discussion on single-sourcing the version, see # https://packaging.python.org/guides/single-sourcing-package-version/ -dynamic = ["version"] -# version = "0.0.3" # REQUIRED, although can be dynamic +# dynamic = ["version"] +version = "0.1.0" # REQUIRED, although can be dynamic # This is a one-line description or tagline of what your project does. This # corresponds to the "Summary" metadata field: diff --git a/src/rtl_manifest/__init__.py b/src/rtl_manifest/__init__.py index 274ed5a..591d4e9 100644 --- a/src/rtl_manifest/__init__.py +++ b/src/rtl_manifest/__init__.py @@ -1,9 +1,4 @@ from .rtl_manifest import rtl_manifest_main -VERSION_BASE = "0.0.3" - -import datetime -__version__ = f"{VERSION_BASE}.{datetime.datetime.now().strftime('%Y.%m.%d.%H%M')}" - def main(): rtl_manifest_main() \ No newline at end of file