Skip to content

Commit

Permalink
adjusting version again
Browse files Browse the repository at this point in the history
  • Loading branch information
zbilodea committed Oct 20, 2023
1 parent 70640f9 commit 7c2abba
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ dmypy.json
cython_debug/

# # setuptools_scm
# src/*/_version.py
src/*/_version.py


# ruff
Expand Down
2 changes: 1 addition & 1 deletion src/odapt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
from __future__ import annotations

from odapt._version import version as __version__
from odapt._version import __version__
from odapt.operations import hadd # noqa: F401

__all__ = ["__version__"]
23 changes: 4 additions & 19 deletions src/odapt/_version.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,4 @@
# file generated by setuptools_scm
# don't change, don't track in version control
from __future__ import annotations

# 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 = "1.0.2"
__version_tuple__ = version_tuple = (1, 0, 2)
# This file is auto-generated by Hatchling. As such, do not:
# - modify
# - track in version control e.g. be sure to add to .gitignore
__version__ = VERSION = '1.0.2'
4 changes: 0 additions & 4 deletions src/odapt/_version.pyi

This file was deleted.

0 comments on commit 7c2abba

Please sign in to comment.