Skip to content

Commit 52bcbb1

Browse files
committed
🔖 bump version to 0.1.1
- change to single point of definition in pyproject.toml - eventually change to dynamic version based on tags
1 parent 244318e commit 52bcbb1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

acore/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
__version__ = "0.1.0"
1+
from importlib.metadata import version
2+
3+
__version__ = version("acore")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
authors = [{ name = "Alberto Santos Delgado", email = "[email protected]" }]
33
name = "acore"
4-
version = "0.1.0"
4+
version = "0.1.1"
55
description = "A Python package with statistical functions to analyse multimodal molecular data"
66
license = { text = "GNU General Public License v3" }
77
readme = "README.rst"

0 commit comments

Comments
 (0)