We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91edec1 commit b26a6b5Copy full SHA for b26a6b5
luxonis_ml/__init__.py
@@ -1,4 +1,9 @@
1
-__version__ = "0.8.0"
+from typing import Final
2
+
3
+from pydantic_extra_types.semantic_version import SemanticVersion
4
5
+__version__: Final[str] = "0.8.1"
6
+__semver__: Final[SemanticVersion] = SemanticVersion.parse(__version__)
7
8
import os
9
luxonis_ml/utils/requirements.txt
@@ -1,4 +1,5 @@
pydantic~=2.7
+pydantic-extra-types~=2.10
pydantic-settings~=2.1
PyYAML~=6.0
fsspec>=2023.3.0
0 commit comments