build: bump version 0.5.1 → 0.6.0

This commit is contained in:
Jensun Ravichandran 2021-06-20 19:12:01 +02:00
parent a8c74a1a6f
commit 597c9fc1ee
4 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.1
current_version = 0.6.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)

View File

@ -23,7 +23,7 @@ author = "Jensun Ravichandran"
# The full version, including alpha/beta/rc tags
#
release = "0.5.1"
release = "0.6.0"
# -- General configuration ---------------------------------------------------

View File

@ -22,7 +22,7 @@ from .core import (
)
# Core Setup
__version__ = "0.5.1"
__version__ = "0.6.0"
__all_core__ = [
"competitions",

View File

@ -20,7 +20,7 @@ with open("README.md", "r") as fh:
INSTALL_REQUIRES = [
"torch>=1.3.1",
"torchvision>=0.5.1",
"torchvision>=0.6.0",
"numpy>=1.9.1",
"sklearn",
]
@ -48,7 +48,7 @@ ALL = DATASETS + DEV + DOCS + EXAMPLES + TESTS
setup(
name="prototorch",
version="0.5.1",
version="0.6.0",
description="Highly extensible, GPU-supported "
"Learning Vector Quantization (LVQ) toolbox "
"built using PyTorch and its nn API.",