ci: Add possible prerelease to bumpversion
This commit is contained in:
parent
6d7d93c8e8
commit
626f51ce80
@ -2,8 +2,10 @@
|
|||||||
current_version = 0.5.2
|
current_version = 0.5.2
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
|
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-zA-Z0-9_.-]+))?
|
||||||
serialize = {major}.{minor}.{patch}
|
serialize =
|
||||||
|
{major}.{minor}.{patch}-{release}
|
||||||
|
{major}.{minor}.{patch}
|
||||||
message = build: bump version {current_version} → {new_version}
|
message = build: bump version {current_version} → {new_version}
|
||||||
|
|
||||||
[bumpversion:file:setup.py]
|
[bumpversion:file:setup.py]
|
||||||
|
@ -6,6 +6,7 @@ repos:
|
|||||||
rev: v4.2.0
|
rev: v4.2.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
|
exclude: (^\.bumpversion\.cfg$|cli_messages\.py)
|
||||||
- id: end-of-file-fixer
|
- id: end-of-file-fixer
|
||||||
- id: check-yaml
|
- id: check-yaml
|
||||||
- id: check-added-large-files
|
- id: check-added-large-files
|
||||||
|
@ -1,39 +1,3 @@
|
|||||||
"""`models` plugin for the `prototorch` package."""
|
"""`models` plugin for the `prototorch` package."""
|
||||||
|
|
||||||
from .callbacks import PrototypeConvergence, PruneLoserPrototypes
|
|
||||||
from .cbc import CBC, ImageCBC
|
|
||||||
from .glvq import (
|
|
||||||
GLVQ,
|
|
||||||
GLVQ1,
|
|
||||||
GLVQ21,
|
|
||||||
GMLVQ,
|
|
||||||
GRLVQ,
|
|
||||||
GTLVQ,
|
|
||||||
LGMLVQ,
|
|
||||||
LVQMLN,
|
|
||||||
ImageGLVQ,
|
|
||||||
ImageGMLVQ,
|
|
||||||
ImageGTLVQ,
|
|
||||||
SiameseGLVQ,
|
|
||||||
SiameseGMLVQ,
|
|
||||||
SiameseGTLVQ,
|
|
||||||
)
|
|
||||||
from .knn import KNN
|
|
||||||
from .lvq import (
|
|
||||||
LVQ1,
|
|
||||||
LVQ21,
|
|
||||||
MedianLVQ,
|
|
||||||
)
|
|
||||||
from .probabilistic import (
|
|
||||||
CELVQ,
|
|
||||||
RSLVQ,
|
|
||||||
SLVQ,
|
|
||||||
)
|
|
||||||
from .unsupervised import (
|
|
||||||
GrowingNeuralGas,
|
|
||||||
KohonenSOM,
|
|
||||||
NeuralGas,
|
|
||||||
)
|
|
||||||
from .vis import *
|
|
||||||
|
|
||||||
__version__ = "0.5.2"
|
__version__ = "0.5.2"
|
||||||
|
Loading…
Reference in New Issue
Block a user