Skip to content

Commit c229d34

Browse files
committed
fix: version is specified in the pyproject file only
1 parent 5814ed3 commit c229d34

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ConditionalGMM"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = [
55
{ name="Thomas McClintock", email="[email protected]" },
66
]

src/ConditionalGMM/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
import importlib.metadata
2+
13
__author__ = "Tom McClintock <[email protected]>"
2-
__version__ = "0.1.1"
4+
__version__ = importlib.metadata.version("ConditionalGMM")

0 commit comments

Comments
 (0)