We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e83c6 commit 04ca924Copy full SHA for 04ca924
3 files changed
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "quantflow"
3
-version = "0.6.1"
+version = "0.6.2"
4
description = "quantitative analysis"
5
authors = [ { name = "Luca Sbardella", email = "luca@quantmind.com" } ]
6
license = "BSD-3-Clause"
quantflow/__init__.py
@@ -1,3 +1,5 @@
"""Quantitative analysis and pricing"""
-__version__ = "0.6.1"
+from importlib.metadata import version
+
+__version__ = version("quantflow")
0 commit comments