Package: python-pyvista / 0.46.4-4

Metadata

Package Version Patches format
python-pyvista 0.46.4-4 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
no_trame_vtk.patch | (download)

tests/plotting/test_tinypages.py | 2 1 + 1 - 0 !
tests/plotting/tinypages/conf.py | 2 1 + 1 - 0 !
2 files changed, 2 insertions(+), 2 deletions(-)

---
no_retry_requests_package.patch | (download)

tests/examples/test_downloads.py | 8 1 + 7 - 0 !
1 file changed, 1 insertion(+), 7 deletions(-)

---
paraview_skip_tests.patch | (download)

tests/core/test_composite.py | 3 3 + 0 - 0 !
tests/core/test_dataobject.py | 3 3 + 0 - 0 !
tests/core/test_dataset_filters.py | 9 9 + 0 - 0 !
tests/core/test_grid.py | 3 3 + 0 - 0 !
tests/core/test_polydata.py | 3 3 + 0 - 0 !
tests/core/test_reader.py | 3 3 + 0 - 0 !
tests/core/test_utilities.py | 3 3 + 0 - 0 !
tests/plotting/test_charts.py | 7 7 + 0 - 0 !
tests/plotting/test_collection.py | 4 4 + 0 - 0 !
tests/plotting/test_plotting.py | 10 10 + 0 - 0 !
10 files changed, 48 insertions(+)

---
skip_trimesh_tests.patch | (download)

tests/core/test_helpers.py | 7 5 + 2 - 0 !
1 file changed, 5 insertions(+), 2 deletions(-)

---
skip_cmcrameri_cmocean_tests.patch | (download)

doc/source/make_tables.py | 4 2 + 2 - 0 !
tests/doc/test_tables.py | 6 4 + 2 - 0 !
tests/plotting/test_colors.py | 6 4 + 2 - 0 !
3 files changed, 10 insertions(+), 6 deletions(-)

---
no_pytest_cases_package.patch | (download)

tests/core/test_utilities.py | 112 0 + 112 - 0 !
tests/examples/test_cell_examples.py | 31 0 + 31 - 0 !
tests/examples/test_download_files.py | 127 0 + 127 - 0 !
tests/test_conftest.py | 348 0 + 348 - 0 !
4 files changed, 618 deletions(-)

---
drop_pytest_image_cache_dirs_from_pyproject.patch | (download)

pyproject.toml | 3 0 + 3 - 0 !
1 file changed, 3 deletions(-)

---
empty_no_images_to_verify_fixture.patch | (download)

tests/plotting/test_plotting.py | 7 1 + 6 - 0 !
1 file changed, 1 insertion(+), 6 deletions(-)

---
python3.14 compatibility.patch | (download)

pyvista/core/_typing_core/_aliases.py | 23 0 + 23 - 0 !
pyvista/core/_typing_core/_array_like.py | 1 0 + 1 - 0 !
pyvista/core/_typing_core/_dataset_types.py | 8 0 + 8 - 0 !
pyvista/plotting/_typing.py | 1 0 + 1 - 0 !
4 files changed, 33 deletions(-)

 fix python 3.14 compatibility by removing __doc__ assignments to type aliases
 Python 3.14 made typing.Union and TypeVar objects' __doc__ attributes read-only,
 preventing assignment of custom documentation strings. This patch removes all
 __doc__ assignments from type aliases to make pyvista importable in Python 3.14.
 .
 This is based on upstream PR #8102:
 https://github.com/pyvista/pyvista/pull/8102