diff options
author | jaseg <git@jaseg.de> | 2024-10-31 15:40:40 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2024-10-31 15:52:16 +0100 |
commit | ec85ebad75b5b49c2bf0d142eb0bf0d09e5082bf (patch) | |
tree | 8c4a7f804ab93f2a2c2a88ed5e93baf79964591e | |
parent | a51a52291f6e478db6238cb1cd4a410b4d4dbd83 (diff) | |
download | infiray_irg_py-ec85ebad75b5b49c2bf0d142eb0bf0d09e5082bf.tar.gz infiray_irg_py-ec85ebad75b5b49c2bf0d142eb0bf0d09e5082bf.tar.bz2 infiray_irg_py-ec85ebad75b5b49c2bf0d142eb0bf0d09e5082bf.zip |
-rw-r--r-- | pyproject.toml | 2 | ||||
-rw-r--r-- | src/infiray_irg.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 77784f4..7bdd238 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "pdm.backend" [project] name = "infiray_irg" -version = "1.2.0" +version = "1.3.0" authors = [ { name="jaseg", email="code@jaseg.de" }, ] diff --git a/src/infiray_irg.py b/src/infiray_irg.py index 273d3fe..dfe0d0c 100644 --- a/src/infiray_irg.py +++ b/src/infiray_irg.py @@ -4,6 +4,8 @@ import numpy as np import struct import io +__version__ = "1.3.0" + def load(data): def consume(n): nonlocal data |