aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorSam Scholten2025-10-30 11:28:58 +1000
committerSam Scholten2025-10-30 11:28:58 +1000
commitc26cf2943de7f261951e891bc6325d82f79ef865 (patch)
tree159cd9c81acc451c0e63f5866aee31d049f76f8a /pyproject.toml
parent2c382a14d963b18708ae1c9a0756b0c17d66e01a (diff)
downloadscopekit-1.0.3.tar.gz
scopekit-1.0.3.zip
fix: remove warning when no data in view during zoomingv1.0.3
- Remove RuntimeWarning that appeared during normal zoom operations - This warning occurred when zooming into very small ranges where no data points were visible - The behavior is now silent, returning empty arrays without warning as this is expected during zooming - Simplified code logic by removing early return for empty mask and checking array length after filtering - Bump version to 1.0.3
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index e0b5d54..69f240a 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "scopekit"
-version = "1.0.2"
+version = "1.0.3"
description = "General-purpose oscilloscope plotting components."
authors = [{ name = "Sam Scholten", email = "s.scholten@uq.edu.au" }]
requires-python = ">=3.8"