Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove vtk8 variants and updates Python variants #375

Merged
merged 3 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog
## vx.x.x
- Removed VTK 8 variants from conda recipe.
- Change Python variants: removed 3.6 and 3.7, added 3.11 and 3.12.
- Bugfix on resample reader #359. Standalone viewer app defaults to downsample in all dimensions.
- Fix bug with setInputAsNumpy() using deprecated `numpy2vtkImporter` in `CILViewer2D` - now uses `numpy2vtkImage`
- Removed the `paskino` channel from the install command as eqt is on `conda-forge`
Expand Down
14 changes: 2 additions & 12 deletions Wrappers/Python/conda-recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,6 @@
python:
- 3.6
- 3.7
- 3.8
- 3.9
- 3.10
vtk:
- 8.1.2
- 8.1.2
- 9.*
- 9.*
- 9.*

zip_keys:
- python
- vtk
- 3.11
- 3.12
4 changes: 2 additions & 2 deletions Wrappers/Python/conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ test:
requirements:
build:
- python {{ python }}
- vtk {{ vtk }}
- vtk

run:
- python {{ python }}
- numpy
- vtk {{ vtk }}
- vtk
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we fix at a vtk version we have tested with and know works?

- pyside2
- eqt>=0.7.0
- importlib_metadata # [py<38]
Expand Down
Loading