From b78b2e1f173ce06505b5f6433fcd8c0e357f262a Mon Sep 17 00:00:00 2001 From: Ossama Alami Date: Tue, 4 Nov 2025 16:43:37 -0800 Subject: [PATCH] Remove auto-generated _version.py from version control MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The _version.py file is automatically generated by setuptools-scm and should not be tracked in git. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitignore | 1 + src/workato_platform_cli/_version.py | 34 ---------------------------- 2 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 src/workato_platform_cli/_version.py diff --git a/.gitignore b/.gitignore index ed1be1f..91c41ba 100644 --- a/.gitignore +++ b/.gitignore @@ -74,3 +74,4 @@ target/ src/workato_platform/_version.py +src/workato_platform_cli/_version.py diff --git a/src/workato_platform_cli/_version.py b/src/workato_platform_cli/_version.py deleted file mode 100644 index 4fe9451..0000000 --- a/src/workato_platform_cli/_version.py +++ /dev/null @@ -1,34 +0,0 @@ -# file generated by setuptools-scm -# don't change, don't track in version control - -__all__ = [ - "__version__", - "__version_tuple__", - "version", - "version_tuple", - "__commit_id__", - "commit_id", -] - -TYPE_CHECKING = False -if TYPE_CHECKING: - from typing import Tuple - from typing import Union - - VERSION_TUPLE = Tuple[Union[int, str], ...] - COMMIT_ID = Union[str, None] -else: - VERSION_TUPLE = object - COMMIT_ID = object - -version: str -__version__: str -__version_tuple__: VERSION_TUPLE -version_tuple: VERSION_TUPLE -commit_id: COMMIT_ID -__commit_id__: COMMIT_ID - -__version__ = version = '1.0.0rc4.dev9' -__version_tuple__ = version_tuple = (1, 0, 0, 'rc4', 'dev9') - -__commit_id__ = commit_id = None