Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
easyblock = 'PythonPackage'

name = 'IMAS-ParaView'
version = '2.2.0'

description = """ParaView plugin to convert GGD structures to VTK"""
homepage = "https://github.com/iterorganization/IMAS-ParaView"

toolchain = {'name': 'intel', 'version': '2023b'}

source_urls = [PYPI_LOWER_SOURCE]
sources = ['imas_paraview-%(version)s.tar.gz']
checksums = ['91f5e6da49c0972dcff4909fecaa3f31ce9a845a58353a77961ba2d294ca57a1']

dependencies = [
('Python', '3.11.5'),
('SciPy-bundle', '2023.12'),
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Shouldn't this be ( 'SciPy-bundle', '2023.11') ? That's the version we have in 2023b

Copy link
Copy Markdown
Contributor Author

@SimonPinches SimonPinches Mar 12, 2026

Choose a reason for hiding this comment

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

This PR relies upon #20262. (SciPy-bundle hasn't been built for 2023.11).

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

The version was changed later on in #24931. This is why unit tests are failing in this PR.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

I will fix this and any other PRs accordingly as soon as I get time.

('ParaView', '5.12.0'),
('VTK', '9.3.0'),
('IMAS-Python', '2.1.0'),
]

modextrapaths = {
'PV_PLUGIN_PATH': ['lib/python%(pyshortver)s/site-packages/imas_paraview/plugins'],
}

moduleclass = 'vis'

modluafooter = 'conflict("GGD-VTK")'
modtclfooter = 'conflict GGD-VTK'
Loading