Skip to content

Commit d7a778a

Browse files
authored
bump version to 0.5.1
fix versioning support
2 parents d3dbd99 + 8fefc59 commit d7a778a

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[tool.poetry]
22
name = "ScreenPro2"
3-
version = "0.5.0"
43
description = "Flexible analysis of high-content CRISPR screening"
54
authors = [
6-
"Abe Arab <[email protected]>"
5+
"Abe Arab <[email protected]>"
76
]
87
license = "MIT"
98
readme = "README.md"
@@ -14,6 +13,7 @@ packages = [
1413
{ include = "screenpro" },
1514
{ include = "pyproject.toml" },
1615
]
16+
dynamic = ["version"]
1717

1818
[tool.poetry.dependencies]
1919
python = ">=3.9"
@@ -25,6 +25,9 @@ screenpro = "screenpro.main:main"
2525
pytest = "*"
2626
tomli = "*"
2727

28+
[tool.poetry-dynamic-versioning]
29+
enable = true
30+
2831
[build-system]
2932
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
30-
build-backend = "poetry_dynamic_versioning.backend"
33+
build-backend = "poetry.core.masonry.api"

screenpro/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,5 @@
2929
from .ngs import GuideCounter
3030
from .assays import PooledScreens, GImaps
3131
from .dashboard import DrugScreenDashboard
32+
33+
__version__ = "0.5.1"

0 commit comments

Comments
 (0)