Skip to content

Commit 26d9b26

Browse files
committed
💎 Bumpversion from 0.1.2 to 0.1.3; Add conda python v3.8
1 parent 53f3888 commit 26d9b26

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.2
2+
current_version = 0.1.3
33
commit = False
44
tag = True
55

conda/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: "deepblink"
3-
version: 0.1.2
3+
version: 0.1.3
44
source:
55
path: ..
66

@@ -13,11 +13,11 @@ build:
1313

1414
requirements:
1515
build:
16-
- python>=3.6,<3.8
16+
- python>=3.6,<3.9
1717
- pip
1818
- setuptools
1919
run:
20-
- python>=3.6,<3.8
20+
- python>=3.6,<3.9
2121
- matplotlib>=3.0.0
2222
- requests>=2.0.0
2323
- numpy>=1.17.0

deepblink/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
- util: Basic utility functions not fitting into a category.
1717
"""
1818

19-
__version__ = "0.1.2"
19+
__version__ = "0.1.3"
2020

2121
from . import augment
2222
from . import cli

deepblink/cli/_parseutil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def _add_utils(parser: argparse.ArgumentParser):
172172
"-V",
173173
"--version",
174174
action="version",
175-
version="%(prog)s 0.1.2",
175+
version="%(prog)s 0.1.3",
176176
help="Show %(prog)s's version number.",
177177
)
178178
group.add_argument(

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
year = "2020"
3838
author = "Bastian Eichenberger"
3939
copyright = f"{year}, {author}"
40-
version = release = "0.1.2"
40+
version = release = "0.1.3"
4141

4242
pygments_style = "trac"
4343
templates_path = ["."]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
setup(
1212
# Description
1313
name="deepblink",
14-
version="0.1.2",
14+
version="0.1.3",
1515
license="MIT",
1616
description="Threshold independent detection and localization of diffraction-limited spots.",
1717
long_description_content_type="text/plain",

0 commit comments

Comments
 (0)