- Dec 01, 2024
-
-
David Gobbi authored
If the C++ object already existed within VTK, and the Python object is being created because it is being returned by a method, then we don't want the creation of the Python object to cause changes to C++ object attributes that were already set by the C++ VTK code. For example, if we are getting the output dataset from a C++ VTK filter, we don't want any C++ attributes of the dataset to change when the Python part of this pre-existing dataset object is created.
-
- Nov 21, 2024
-
- Nov 19, 2024
-
-
74974da0 VTK v9.4.0 release notes Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Merge-request: !11674
-
- Nov 18, 2024
-
-
Sankhesh Jhaveri authored
-
- Nov 16, 2024
-
-
96998888 Make WrappingTools -pthread flag wasm-specific Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Jaswant Panchumarti (Kitware) <jaswant.panchumarti@kitware.com> Merge-request: !11673
-
389ba523 ci: move python 3.12 jobs to be nightly-only b734e176 vtkPythonCompatibility: initialize `tp_versions_used` 79ec9350 ci: update aiohttp in windows venv c26767a9 ci: python update numpy version for windows a1425e2b ci: Add setuptools in windows venv cb17cc59 ci: Use python3.13 in windows ci jobs 925ca4cb ci: Add python313 wheels for windows 7f96587d ci: Add python313 wheels for macos ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !11666
-
David Gobbi authored
-
- Nov 15, 2024
-
-
Christos Tsolakis authored
-
Christos Tsolakis authored
-
Christos Tsolakis authored
The previous pinned version failed in python 3.13 due to removed symbols and different signatures in CPython functions: error C2039:: 'op_digit': is not a member of '_longobject' error C2198: 'int _PyLong_AsByteArray': too few arguments to call
-
Christos Tsolakis authored
Required due to the newer setuptools dependency Otherwise installing numpy fails fails with: AttributeError: module 'pkgutil' has no attribute 'ImpImporter'.
-
Christos Tsolakis authored
required for distutils in python 3.12+
-
Christos Tsolakis authored
-
Christos Tsolakis authored
-
Christos Tsolakis authored
-
Christos Tsolakis authored
Add files and hashes for python 3.13 for windows and macos
-
- Nov 14, 2024
-
-
Christos Tsolakis authored
-
Christos Tsolakis authored
Fixes warning for `re.sub`: DeprecationWarning: 'count' is passed as positional argument
-
- Nov 13, 2024
-
-
fbdd9a63 Merge branch 'upstream-mpi4py' into mpi4py-4.0.1-fix 1ac079e5 mpi4py 2024-11-13 (549ebe14) 99bf9e73 mpi4py: update to fix errors with msmpi Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Reviewed-by:
Sankhesh Jhaveri <sankhesh.jhaveri@kitware.com> Merge-request: !11647
-
-
9a86acb2 ci: remove executable permissions from `.ps1` scripts 3a273781 ci: use JSON to transfer environment variables Acked-by:
Kitware Robot <kwrobot@kitware.com> Rejected-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Ryan Krattiger <ryan.krattiger@kitware.com> Merge-request: !11612
-
9a86acb2 ci: remove executable permissions from `.ps1` scripts 3a273781 ci: use JSON to transfer environment variables Acked-by:
Kitware Robot <kwrobot@kitware.com> Rejected-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Ryan Krattiger <ryan.krattiger@kitware.com> Merge-request: !11612
-
David Gobbi authored
# By mpi4py Upstream * upstream-mpi4py: mpi4py 2024-11-13 (549ebe14)
-
Code extracted from: https://gitlab.kitware.com/third-party/mpi4py.git at commit 549ebe149f05016afc0938beca8c4c488d0f29cf (for/vtk-20241113-4.0.1).
-
David Gobbi authored
-
- Nov 12, 2024
-
-
Ben Boeckel authored
PowerShell scripts are not inherently executable and therefore should not have the executable bit set.
-
Ben Boeckel authored
The `set` command in `cmd` has terrible properties in that there's no real structure to it. Sensitive sequences in values or variable names that are escaping sequences can be interpreted at the wrong time or things like newlines in values are not escaped at all and cause ambiguities in parsing. Avoid all of that and use PowerShell to use JSON as a communication mechanism.
-
-
34209c1f ci: exclude TestCellGridRange universally until vtk/vtk!11452 lands 9256a35f Exclude TestCellGridPointProbe on windows 131df7b8 ci: python-wheels ensure required packages are installed 048bb4e0 Prevent vtkAbstractTransform ModifiedEvent deadlock 56f2d27d Memory leak in vtkRemoveDuplicatePolys.cpp, the variable "polyPoints" 5d7af024 Use vtkErrorMacro 491d1806 Improve reporting of CGNS opening failure 42bdb0fd vtkContour3DLinearGrid: quiet an INFO message ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Lucas Givord <lucas.givord@kitware.com> Reviewed-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !11651
-
(cherry picked from commit f75ae398)
-
(cherry picked from commit ed7fb678)
-
- Nov 08, 2024
-
-
Fixes ModuleNotFoundError: No module named 'setuptools' during the /bin/python setup.py bdist_wheel step (cherry picked from commit 69c3d7e4)
-
The Update() method of vtkAbstractTransform uses a mutex lock, and calls virtual methods during the lock which are implemented by subclasses. Those methods can trigger callbacks that cause Update() to be called again, resulting in a deadlock. By ensuring that calls to Modified() during Update() do not invoke ModifiedEvent, we can avoid at least some of these deadlocks. (cherry picked from commit 0dbd7a9c)
-
(cherry picked from commit 53da5dfd)
-
(cherry picked from commit c0b29bb1)
-
(cherry picked from commit a7bdf2ee)
-
An INFO message is always printed with default log verbosity. This INFO message was in a function that checks a capability, so could be logged during the course of an entirely normal operation. This changes it to TRACE to quiet it but still make it available at higher verbosity levels. (cherry picked from commit 894fa2de)
-
Specially for Composite sublcasses: if class change, but not the content (same leaves etc), cache status reflect that and be disabled (cherry picked from commit 06ee0008)
-
Composite polydata doesn't works with wasm for now, excluded. For more details check this related issue: vtk/vtk#19343 (cherry picked from commit 3b5a949b)
-
(cherry picked from commit 7323f95c)
-