Skip to content

Commit

Permalink
refactor: add version file;
Browse files Browse the repository at this point in the history
  • Loading branch information
WenjieDu committed Jul 26, 2024
1 parent 2ddd288 commit cfddb50
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 20 deletions.
30 changes: 10 additions & 20 deletions pypots/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,16 @@
# License: BSD-3-Clause


# PyPOTS version
#
# PEP0440 compatible formatted version, see:
# https://www.python.org/dev/peps/pep-0440/
# Generic release markers:
# X.Y
# X.Y.Z # For bugfix releases
#
# Admissible pre-release markers:
# X.YaN # Alpha release
# X.YbN # Beta release
# X.YrcN # Release Candidate
# X.Y # Final release
#
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
__version__ = "0.7"


from . import imputation, classification, clustering, forecasting, optim, data, utils
from . import (
imputation,
classification,
clustering,
forecasting,
optim,
data,
utils,
)
from .version import __version__

__all__ = [
"imputation",
Expand Down
25 changes: 25 additions & 0 deletions pypots/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
"""
"""

# Created by Wenjie Du <[email protected]>
# License: BSD-3-Clause


# PyPOTS version
#
# PEP0440 compatible formatted version, see:
# https://www.python.org/dev/peps/pep-0440/
# Generic release markers:
# X.Y
# X.Y.Z # For bugfix releases
#
# Admissible pre-release markers:
# X.YaN # Alpha release
# X.YbN # Beta release
# X.YrcN # Release Candidate
# X.Y # Final release
#
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
__version__ = "0.7"

0 comments on commit cfddb50

Please sign in to comment.