uplot-python 1.1.0__tar.gz → 1.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. uplot_python-1.1.1/.gitattributes +1 -0
  2. {uplot_python-1.1.0 → uplot_python-1.1.1}/.woodpecker/changelog.yml +2 -1
  3. {uplot_python-1.1.0 → uplot_python-1.1.1}/CHANGELOG.md +13 -1
  4. {uplot_python-1.1.0 → uplot_python-1.1.1}/NOTICE +1 -0
  5. {uplot_python-1.1.0 → uplot_python-1.1.1}/PKG-INFO +3 -2
  6. {uplot_python-1.1.0 → uplot_python-1.1.1}/README.md +1 -0
  7. {uplot_python-1.1.0 → uplot_python-1.1.1}/pixi.lock +566 -549
  8. {uplot_python-1.1.0 → uplot_python-1.1.1}/pyproject.toml +1 -1
  9. uplot_python-1.1.1/tests/test_color_picker.py +47 -0
  10. {uplot_python-1.1.0 → uplot_python-1.1.1}/uplot/__init__.py +1 -1
  11. {uplot_python-1.1.0 → uplot_python-1.1.1}/uplot/color_picker.py +1 -1
  12. {uplot_python-1.1.0 → uplot_python-1.1.1}/uplot/plot2.py +37 -5
  13. uplot_python-1.1.0/tests/test_color_picker.py +0 -26
  14. {uplot_python-1.1.0 → uplot_python-1.1.1}/.gitignore +0 -0
  15. {uplot_python-1.1.0 → uplot_python-1.1.1}/.woodpecker/coverage.yml +0 -0
  16. {uplot_python-1.1.0 → uplot_python-1.1.1}/.woodpecker/lint.yml +0 -0
  17. {uplot_python-1.1.0 → uplot_python-1.1.1}/.woodpecker/pypi.yml +0 -0
  18. {uplot_python-1.1.0 → uplot_python-1.1.1}/.woodpecker/test.yml +0 -0
  19. {uplot_python-1.1.0 → uplot_python-1.1.1}/LICENSE +0 -0
  20. {uplot_python-1.1.0 → uplot_python-1.1.1}/MANIFEST.in +0 -0
  21. {uplot_python-1.1.0 → uplot_python-1.1.1}/examples/left_right_axes.py +0 -0
  22. {uplot_python-1.1.0 → uplot_python-1.1.1}/examples/simple_plot.py +0 -0
  23. {uplot_python-1.1.0 → uplot_python-1.1.1}/examples/simple_plot2.py +0 -0
  24. {uplot_python-1.1.0 → uplot_python-1.1.1}/tests/__init__.py +0 -0
  25. {uplot_python-1.1.0 → uplot_python-1.1.1}/tests/test_exceptions.py +0 -0
  26. {uplot_python-1.1.0 → uplot_python-1.1.1}/tests/test_generate_html.py +0 -0
  27. {uplot_python-1.1.0 → uplot_python-1.1.1}/tests/test_plot.py +0 -0
  28. {uplot_python-1.1.0 → uplot_python-1.1.1}/tests/test_plot2.py +0 -0
  29. {uplot_python-1.1.0 → uplot_python-1.1.1}/tests/test_utils.py +0 -0
  30. {uplot_python-1.1.0 → uplot_python-1.1.1}/tests/test_write_html_tempfile.py +0 -0
  31. {uplot_python-1.1.0 → uplot_python-1.1.1}/uplot/exceptions.py +0 -0
  32. {uplot_python-1.1.0 → uplot_python-1.1.1}/uplot/generate_html.py +0 -0
  33. {uplot_python-1.1.0 → uplot_python-1.1.1}/uplot/plot.py +0 -0
  34. {uplot_python-1.1.0 → uplot_python-1.1.1}/uplot/static/__init__.py +0 -0
  35. {uplot_python-1.1.0 → uplot_python-1.1.1}/uplot/static/uPlot.iife.js +0 -0
  36. {uplot_python-1.1.0 → uplot_python-1.1.1}/uplot/static/uPlot.min.css +0 -0
  37. {uplot_python-1.1.0 → uplot_python-1.1.1}/uplot/static/uPlot.mousewheel.js +0 -0
  38. {uplot_python-1.1.0 → uplot_python-1.1.1}/uplot/utils.py +0 -0
  39. {uplot_python-1.1.0 → uplot_python-1.1.1}/uplot/write_html_tempfile.py +0 -0
@@ -0,0 +1 @@
1
+ pixi.lock merge=binary linguist-language=YAML linguist-generated=true -diff
@@ -7,4 +7,5 @@ steps:
7
7
  commands:
8
8
  - git fetch --unshallow origin 2>/dev/null || true
9
9
  - git fetch origin ${CI_COMMIT_TARGET_BRANCH}
10
- - git diff --name-only origin/${CI_COMMIT_TARGET_BRANCH}...HEAD | grep -q "^CHANGELOG.md$" || (echo "CHANGELOG.md was not updated" && exit 1)
10
+ - git fetch origin ${CI_COMMIT_SOURCE_BRANCH}
11
+ - git diff --name-only origin/${CI_COMMIT_TARGET_BRANCH}...origin/${CI_COMMIT_SOURCE_BRANCH} | grep -q "^CHANGELOG.md$" || (echo "CHANGELOG.md was not updated" && exit 1)
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.1.1] - 2026-06-08
11
+
12
+ ### Added
13
+
14
+ - CICD: Set up pixi
15
+ - CICD: Start unit testing with a fixture for the color picker
16
+
17
+ ### Fixed
18
+
19
+ - Fix `ColorPicker` index error when requesting more colors than available (now wraps around)
20
+
10
21
  ## [1.1.0] - 2026-05-28
11
22
 
12
23
  ### Added
@@ -25,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
25
36
  - Extract this project from [foxplot](https://codeberg.org/stephane-caron/foxplot)
26
37
  - Start this changelog
27
38
 
28
- [unreleased]: https://codeberg.org/stephane-caron/uplot-python/compare/v1.1.0...HEAD
39
+ [unreleased]: https://codeberg.org/stephane-caron/uplot-python/compare/v1.1.1...HEAD
40
+ [1.1.1]: https://codeberg.org/stephane-caron/uplot-python/releases/tag/v1.1.1
29
41
  [1.1.0]: https://codeberg.org/stephane-caron/uplot-python/releases/tag/v1.1.0
30
42
  [1.0.0]: https://codeberg.org/stephane-caron/uplot-python/releases/tag/v1.0.0
@@ -2,3 +2,4 @@ This project includes contributions made under the following copyrights:
2
2
 
3
3
  - Copyright 2022 Stéphane Caron
4
4
  - Copyright 2023-2024 Inria
5
+ - Copyright 2026 CNRS
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uplot-python
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: Python wrapper for μPlot time series.
5
5
  Keywords: json,time,series,plot
6
6
  Author-email: Stéphane Caron <stephane.caron@normalesup.org>
@@ -19,7 +19,7 @@ License-File: LICENSE
19
19
  Requires-Dist: ipython >=8.0.1
20
20
  Requires-Dist: msgpack >=1.0.4
21
21
  Requires-Dist: numpy >=1.15.4
22
- Project-URL: Changelog, https://codeberg.org/stephane-caron/uplot-python/blob/master/CHANGELOG.md
22
+ Project-URL: Changelog, https://codeberg.org/stephane-caron/uplot-python/src/branch/main/CHANGELOG.md
23
23
  Project-URL: Homepage, https://codeberg.org/stephane-caron/uplot-python
24
24
  Project-URL: Source, https://codeberg.org/stephane-caron/uplot-python
25
25
  Project-URL: Tracker, https://codeberg.org/stephane-caron/uplot-python/issues
@@ -78,6 +78,7 @@ uplot.plot2(
78
78
  ## See also
79
79
 
80
80
  - [µPlot](https://github.com/leeoniya/uPlot): A small (~45 KB min), fast chart for time series, lines, areas, ohlc & bars.
81
+ - [foxplot](https://codeberg.org/stephane-caron/foxplot): Plot time series from MessagePack or line-delimited JSON.
81
82
  - [Matplotlib](https://matplotlib.org/stable/): Comprehensive library for creating static, animated, and interactive visualizations.
82
83
  - [matplotlive](https://codeberg.org/stephane-caron/matplotlive): Stream live plots to a Matplotlib figure.
83
84
 
@@ -52,5 +52,6 @@ uplot.plot2(
52
52
  ## See also
53
53
 
54
54
  - [µPlot](https://github.com/leeoniya/uPlot): A small (~45 KB min), fast chart for time series, lines, areas, ohlc & bars.
55
+ - [foxplot](https://codeberg.org/stephane-caron/foxplot): Plot time series from MessagePack or line-delimited JSON.
55
56
  - [Matplotlib](https://matplotlib.org/stable/): Comprehensive library for creating static, animated, and interactive visualizations.
56
57
  - [matplotlive](https://codeberg.org/stephane-caron/matplotlive): Stream live plots to a Matplotlib figure.