├── .azure-pipelines ├── azure-pipelines-linux.yml ├── azure-pipelines-osx.yml └── azure-pipelines-win.yml ├── .ci_support ├── README ├── linux_64_python3.10.____cpython.yaml ├── linux_64_python3.11.____cpython.yaml ├── linux_64_python3.12.____cpython.yaml ├── linux_64_python3.13.____cp313.yaml ├── linux_64_python3.14.____cp314.yaml ├── linux_aarch64_python3.10.____cpython.yaml ├── linux_aarch64_python3.11.____cpython.yaml ├── linux_aarch64_python3.12.____cpython.yaml ├── linux_aarch64_python3.13.____cp313.yaml ├── linux_aarch64_python3.14.____cp314.yaml ├── migrations │ ├── fmt12_spdlog116.yaml │ ├── hdf51146.yaml │ ├── libboost188.yaml │ ├── libnetcdf493.yaml │ ├── libxml2214.yaml │ ├── python314.yaml │ └── tbb2022.yaml ├── osx_64_python3.10.____cpython.yaml ├── osx_64_python3.11.____cpython.yaml ├── osx_64_python3.12.____cpython.yaml ├── osx_64_python3.13.____cp313.yaml ├── osx_64_python3.14.____cp314.yaml ├── osx_arm64_python3.10.____cpython.yaml ├── osx_arm64_python3.11.____cpython.yaml ├── osx_arm64_python3.12.____cpython.yaml ├── osx_arm64_python3.13.____cp313.yaml ├── osx_arm64_python3.14.____cp314.yaml ├── win_64_python3.10.____cpython.yaml ├── win_64_python3.11.____cpython.yaml ├── win_64_python3.12.____cpython.yaml ├── win_64_python3.13.____cp313.yaml └── win_64_python3.14.____cp314.yaml ├── .circleci └── config.yml ├── .gitattributes ├── .github └── CODEOWNERS ├── .gitignore ├── .scripts ├── build_steps.sh ├── logging_utils.sh ├── run_docker_build.sh ├── run_osx_build.sh └── run_win_build.bat ├── LICENSE.txt ├── README.md ├── azure-pipelines.yml ├── conda-forge.yml ├── pixi.toml └── recipe ├── README.md ├── bld-base.bat ├── build-base.sh ├── build-io-ffmpeg.sh ├── conda_build_config.yaml ├── cross-linux.cmake ├── manual_vtk_test.py ├── patches ├── 9987_try_except_python_import.patch ├── expat_use_pkgconfig_version.patch ├── fix-threads-windows.patch └── ioss_fix_fmt12.patch ├── recipe.yaml ├── test_vtk.py ├── tests └── ref.vtu ├── vendored-cgns-license.txt ├── vendored-exprtk-license.txt ├── vendored-fast_float-license.txt ├── vendored-ioss-license.txt ├── vendored-libharu-license.txt ├── vendored-loguru-license.txt ├── vendored-pegtl-license.txt ├── vendored-token-license.txt ├── vendored-verdict-license.txt └── yum_requirements.txt /.azure-pipelines/azure-pipelines-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.azure-pipelines/azure-pipelines-linux.yml -------------------------------------------------------------------------------- /.azure-pipelines/azure-pipelines-osx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.azure-pipelines/azure-pipelines-osx.yml -------------------------------------------------------------------------------- /.azure-pipelines/azure-pipelines-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.azure-pipelines/azure-pipelines-win.yml -------------------------------------------------------------------------------- /.ci_support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/README -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.10.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/linux_64_python3.10.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/linux_64_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/linux_64_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/linux_64_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/linux_64_python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.10.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/linux_aarch64_python3.10.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/linux_aarch64_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/linux_aarch64_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/linux_aarch64_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/linux_aarch64_python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/fmt12_spdlog116.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/migrations/fmt12_spdlog116.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/hdf51146.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/migrations/hdf51146.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/libboost188.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/migrations/libboost188.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/libnetcdf493.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/migrations/libnetcdf493.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/libxml2214.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/migrations/libxml2214.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/python314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/migrations/python314.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/tbb2022.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/migrations/tbb2022.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.10.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/osx_64_python3.10.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/osx_64_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/osx_64_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/osx_64_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/osx_64_python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.10.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/osx_arm64_python3.10.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/osx_arm64_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/osx_arm64_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/osx_arm64_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/osx_arm64_python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.10.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/win_64_python3.10.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/win_64_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/win_64_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/win_64_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.ci_support/win_64_python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/build_steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.scripts/build_steps.sh -------------------------------------------------------------------------------- /.scripts/logging_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.scripts/logging_utils.sh -------------------------------------------------------------------------------- /.scripts/run_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.scripts/run_docker_build.sh -------------------------------------------------------------------------------- /.scripts/run_osx_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.scripts/run_osx_build.sh -------------------------------------------------------------------------------- /.scripts/run_win_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/.scripts/run_win_build.bat -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /conda-forge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/conda-forge.yml -------------------------------------------------------------------------------- /pixi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/pixi.toml -------------------------------------------------------------------------------- /recipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/README.md -------------------------------------------------------------------------------- /recipe/bld-base.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/bld-base.bat -------------------------------------------------------------------------------- /recipe/build-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/build-base.sh -------------------------------------------------------------------------------- /recipe/build-io-ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/build-io-ffmpeg.sh -------------------------------------------------------------------------------- /recipe/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/conda_build_config.yaml -------------------------------------------------------------------------------- /recipe/cross-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/cross-linux.cmake -------------------------------------------------------------------------------- /recipe/manual_vtk_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/manual_vtk_test.py -------------------------------------------------------------------------------- /recipe/patches/9987_try_except_python_import.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/patches/9987_try_except_python_import.patch -------------------------------------------------------------------------------- /recipe/patches/expat_use_pkgconfig_version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/patches/expat_use_pkgconfig_version.patch -------------------------------------------------------------------------------- /recipe/patches/fix-threads-windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/patches/fix-threads-windows.patch -------------------------------------------------------------------------------- /recipe/patches/ioss_fix_fmt12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/patches/ioss_fix_fmt12.patch -------------------------------------------------------------------------------- /recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/recipe.yaml -------------------------------------------------------------------------------- /recipe/test_vtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/test_vtk.py -------------------------------------------------------------------------------- /recipe/tests/ref.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/tests/ref.vtu -------------------------------------------------------------------------------- /recipe/vendored-cgns-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/vendored-cgns-license.txt -------------------------------------------------------------------------------- /recipe/vendored-exprtk-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/vendored-exprtk-license.txt -------------------------------------------------------------------------------- /recipe/vendored-fast_float-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/vendored-fast_float-license.txt -------------------------------------------------------------------------------- /recipe/vendored-ioss-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/vendored-ioss-license.txt -------------------------------------------------------------------------------- /recipe/vendored-libharu-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/vendored-libharu-license.txt -------------------------------------------------------------------------------- /recipe/vendored-loguru-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/vendored-loguru-license.txt -------------------------------------------------------------------------------- /recipe/vendored-pegtl-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/vendored-pegtl-license.txt -------------------------------------------------------------------------------- /recipe/vendored-token-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/vendored-token-license.txt -------------------------------------------------------------------------------- /recipe/vendored-verdict-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/vendored-verdict-license.txt -------------------------------------------------------------------------------- /recipe/yum_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/vtk-feedstock/HEAD/recipe/yum_requirements.txt --------------------------------------------------------------------------------