parallel-matplotlib-animation 0.1.3__tar.gz → 0.1.4__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.
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/PKG-INFO +2 -2
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/pyproject.toml +2 -2
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/uv.lock +5 -5
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/.github/workflows/docs.yml +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/.github/workflows/publish.yml +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/.github/workflows/tests.yml +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/.gitignore +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/LICENSE +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/README.md +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/dev/mp4_to_gif.sh +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/api/animator.md +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/benchmark.md +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/developer.md +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/embed_example_videos.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/examples.md +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/gen_benchmark.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/index.md +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/installation.md +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/usage.md +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/examples/multi_panel_animation.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/examples/nondeterministic_video_loader.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/examples/run_all_except_benchmarks.sh +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/examples/scaling_test.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/examples/simple_wave_animation.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/examples/very_complex_animation.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/mkdocs.yml +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/src/parallel_animate/__init__.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/src/parallel_animate/animator.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/src/parallel_animate/util.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/tests/__init__.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/tests/test_animator.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/tests/test_examples.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/tests/test_pvio_options.py +0 -0
- {parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/tests/test_util.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: parallel-matplotlib-animation
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Animate matplotlib figures into videos, in parallel but with efficient caching
|
|
5
5
|
Project-URL: Repository, https://github.com/nely-epfl/parallel-matplotlib-animation
|
|
6
6
|
Author-email: Sibo Wang-Chen <sibo.wang@epfl.ch>
|
|
@@ -8,7 +8,7 @@ License-File: LICENSE
|
|
|
8
8
|
Requires-Python: <3.15,>=3.10
|
|
9
9
|
Requires-Dist: matplotlib>=3.10.0
|
|
10
10
|
Requires-Dist: numpy<3,>=2
|
|
11
|
-
Requires-Dist: parallel-video-io==0.1.
|
|
11
|
+
Requires-Dist: parallel-video-io==0.1.9
|
|
12
12
|
Requires-Dist: tqdm>=4.67
|
|
13
13
|
Provides-Extra: benchmark
|
|
14
14
|
Requires-Dist: pandas<3.0,>=2.0; extra == 'benchmark'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "parallel-matplotlib-animation"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.4"
|
|
4
4
|
description = "Animate matplotlib figures into videos, in parallel but with efficient caching"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "Sibo Wang-Chen", email = "sibo.wang@epfl.ch" }
|
|
@@ -11,7 +11,7 @@ dependencies = [
|
|
|
11
11
|
"matplotlib>=3.10.0",
|
|
12
12
|
"numpy>=2,<3",
|
|
13
13
|
"tqdm>=4.67",
|
|
14
|
-
"parallel-video-io==0.1.
|
|
14
|
+
"parallel-video-io==0.1.9",
|
|
15
15
|
]
|
|
16
16
|
|
|
17
17
|
[project.optional-dependencies]
|
|
@@ -1458,7 +1458,7 @@ wheels = [
|
|
|
1458
1458
|
|
|
1459
1459
|
[[package]]
|
|
1460
1460
|
name = "parallel-matplotlib-animation"
|
|
1461
|
-
version = "0.1.
|
|
1461
|
+
version = "0.1.4"
|
|
1462
1462
|
source = { editable = "." }
|
|
1463
1463
|
dependencies = [
|
|
1464
1464
|
{ name = "matplotlib" },
|
|
@@ -1487,7 +1487,7 @@ requires-dist = [
|
|
|
1487
1487
|
{ name = "mkdocstrings", extras = ["python"], marker = "extra == 'dev'", specifier = ">=0.29" },
|
|
1488
1488
|
{ name = "numpy", specifier = ">=2,<3" },
|
|
1489
1489
|
{ name = "pandas", marker = "extra == 'benchmark'", specifier = ">=2.0,<3.0" },
|
|
1490
|
-
{ name = "parallel-video-io", specifier = "==0.1.
|
|
1490
|
+
{ name = "parallel-video-io", specifier = "==0.1.9" },
|
|
1491
1491
|
{ name = "plotly", marker = "extra == 'benchmark'", specifier = ">=6.8,<7.0" },
|
|
1492
1492
|
{ name = "pytest", marker = "extra == 'dev'", specifier = ">=9.0,<10.0" },
|
|
1493
1493
|
{ name = "ruff", marker = "extra == 'dev'", specifier = ">=0.15" },
|
|
@@ -1497,7 +1497,7 @@ provides-extras = ["dev", "benchmark"]
|
|
|
1497
1497
|
|
|
1498
1498
|
[[package]]
|
|
1499
1499
|
name = "parallel-video-io"
|
|
1500
|
-
version = "0.1.
|
|
1500
|
+
version = "0.1.9"
|
|
1501
1501
|
source = { registry = "https://pypi.org/simple" }
|
|
1502
1502
|
dependencies = [
|
|
1503
1503
|
{ name = "imageio", extra = ["tifffile"] },
|
|
@@ -1510,9 +1510,9 @@ dependencies = [
|
|
|
1510
1510
|
{ name = "tqdm" },
|
|
1511
1511
|
{ name = "tyro" },
|
|
1512
1512
|
]
|
|
1513
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1513
|
+
sdist = { url = "https://files.pythonhosted.org/packages/6d/e8/bb248ad09c3178a7566c278554fbe8023cae730b5d1a03a9291ecce820d4/parallel_video_io-0.1.9.tar.gz", hash = "sha256:d5498949fd078e82d066bc4c9cdbba3576580d2b1800245190e96fbffd6b1049", size = 187696, upload-time = "2026-06-29T13:50:50.261Z" }
|
|
1514
1514
|
wheels = [
|
|
1515
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1515
|
+
{ url = "https://files.pythonhosted.org/packages/b3/73/ebad2df866906a43cd735c54ce40a54a8b063eef834dcedb384c36e30f5f/parallel_video_io-0.1.9-py3-none-any.whl", hash = "sha256:c4461308a59ff46fd199aeadb9e3eb37684606e19cf2f42fec5e619541c5e34e", size = 31835, upload-time = "2026-06-29T13:50:48.777Z" },
|
|
1516
1516
|
]
|
|
1517
1517
|
|
|
1518
1518
|
[[package]]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/dev/mp4_to_gif.sh
RENAMED
|
File without changes
|
{parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/api/animator.md
RENAMED
|
File without changes
|
{parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/benchmark.md
RENAMED
|
File without changes
|
{parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/developer.md
RENAMED
|
File without changes
|
|
File without changes
|
{parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/examples.md
RENAMED
|
File without changes
|
{parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/gen_benchmark.py
RENAMED
|
File without changes
|
|
File without changes
|
{parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/docs/installation.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/examples/scaling_test.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/tests/__init__.py
RENAMED
|
File without changes
|
{parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/tests/test_animator.py
RENAMED
|
File without changes
|
{parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/tests/test_examples.py
RENAMED
|
File without changes
|
|
File without changes
|
{parallel_matplotlib_animation-0.1.3 → parallel_matplotlib_animation-0.1.4}/tests/test_util.py
RENAMED
|
File without changes
|