We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3378438 commit a6d93f2Copy full SHA for a6d93f2
jpeg_ls/__init__.py
@@ -1,3 +1,4 @@
1
+from importlib.metadata import version
2
import logging
3
4
from .CharLS import (
@@ -16,7 +17,7 @@
16
17
from _CharLS import decode_from_buffer # noqa: F401
18
19
-__version__ = "1.3.0"
20
+__version__: str = version("pyjpegls")
21
22
23
# Setup default logging
pyproject.toml
@@ -33,7 +33,7 @@ license = {text = "MIT"}
33
name = "pyjpegls"
34
readme = "readme.md"
35
requires-python = ">=3.9"
36
-version = "1.5.0"
+version = "1.5.1"
37
38
[project.urls]
39
documentation = "https://pydicom.github.io/pydicom"
0 commit comments