Skip to content

Commit 888127a

Browse files
fix: update version to 1.1.0 and configure dynamic versioning
1 parent 5c00c24 commit 888127a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

openvariant/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
except ImportError:
1111
from importlib_metadata import version # Backport for older versions
1212

13-
__version__ = "1.1.1"
13+
__version__ = '1.1.0'
1414

1515
# Set multiprocessing start method to 'spawn'
1616
try:
@@ -19,4 +19,3 @@
1919
pass
2020

2121
__all__ = ['Annotation', 'Variant', 'cat', 'count', 'group_by', 'findfiles']
22-

pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "open-variant"
7-
version = "1.1.0"
7+
dynamic = ["version"]
88
description = "OpenVariant provides different functionalities to read, parse and operate different multiple input file formats, being able to customize the output."
99
authors = [
1010
{ name = "BBGLab (Barcelona Biomedical Genomics Lab)", email = "[email protected]" }
@@ -21,6 +21,8 @@ requires-python = ">=3.10"
2121
license = { file = "LICENSE" }
2222
keywords = ["bioinformatics", "openvariant", "openvar", "bbglab"]
2323

24+
[tool.hatch.version]
25+
path = "openvariant/__init__.py"
2426

2527
[project.urls]
2628
Homepage = "https://github.com/bbglab/openvariant"

0 commit comments

Comments
 (0)