From e6637166fbbdbaa5b392cb394e8ed33f12824dee Mon Sep 17 00:00:00 2001 From: Jacob Reinhold <5241441+jcreinhold@users.noreply.github.com> Date: Wed, 19 Jan 2022 11:57:37 -0500 Subject: [PATCH] do not auto add tag in bumpversion --- setup.cfg | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/setup.cfg b/setup.cfg index 9313f61..2df6fca 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [bumpversion] current_version = 0.2.1 commit = True -tag = True +tag = False [bumpversion:file:tiramisu_brulee/__init__.py] search = __version__ = "{current_version}" @@ -9,7 +9,7 @@ replace = __version__ = "{new_version}" [flake8] exclude = docs -per-file-ignores = +per-file-ignores = __init__.py: F401 max-line-length = 88 extend-ignore = E203 @@ -32,10 +32,10 @@ keywords = tiramisu, segmentation, neural network, convolutional, pytorch license = Apache Software License 2.0 license_file = LICENSE url = https://github.com/jcreinhold/tiramisu-brulee -project_urls = +project_urls = Bug Tracker = https://github.com/jcreinhold/tiramisu-brulee/issues Documentation = https://tiramisu-brulee.readthedocs.io/ -classifiers = +classifiers = Development Status :: 4 - Beta Intended Audience :: Developers License :: OSI Approved :: Apache Software License @@ -54,15 +54,15 @@ zip_safe = False include_package_data = True packages = find: python_requires = >= 3.6 -install_requires = +install_requires = torch test_suite = tests [options.packages.find] -include = +include = tiramisu_brulee tiramisu_brulee.* -exclude = +exclude = tests docs @@ -70,7 +70,7 @@ exclude = tiramisu_brulee = py.typed [options.extras_require] -lesionseg = +lesionseg = jsonargparse~=3.12.0 numpy pandas @@ -84,12 +84,12 @@ lesionseg = torchio torchmetrics mlflow = mlflow -onnx = +onnx = onnx onnxruntime [options.entry_points] -console_scripts = +console_scripts = lesion-train = tiramisu_brulee.experiment.cli.train:train lesion-predict = tiramisu_brulee.experiment.cli.predict:predict lesion-predict-image = tiramisu_brulee.experiment.cli.predict:predict_image