Skip to content

Commit 04ca924

Browse files
committed
Fix deps
1 parent 25e83c6 commit 04ca924

3 files changed

Lines changed: 359 additions & 288 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "quantflow"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
description = "quantitative analysis"
55
authors = [ { name = "Luca Sbardella", email = "luca@quantmind.com" } ]
66
license = "BSD-3-Clause"

quantflow/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
"""Quantitative analysis and pricing"""
22

3-
__version__ = "0.6.1"
3+
from importlib.metadata import version
4+
5+
__version__ = version("quantflow")

0 commit comments

Comments
 (0)