Remove bad version

This commit is contained in:
Jeremiah Lowin 2024-11-29 21:10:16 -05:00
commit ca7438f15c
2 changed files with 4 additions and 17 deletions

5
.gitignore vendored
View file

@ -8,4 +8,7 @@ wheels/
# Virtual environments
.venv
.DS_Store
.DS_Store
src/fastmcp/_version.py

View file

@ -1,16 +0,0 @@
# file generated by setuptools_scm
# don't change, don't track in version control
TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple, Union
VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
VERSION_TUPLE = object
version: str
__version__: str
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE
__version__ = version = '0.1.dev4+g18aaf41.d20241129'
__version_tuple__ = version_tuple = (0, 1, 'dev4', 'g18aaf41.d20241129')