Skip to content

Commit

Permalink
Merge pull request #3023 from sassy-crick/20231023210126_new_pr_wxpython
Browse files Browse the repository at this point in the history
update sanity check in wxPython easyblock for version 4.2.0
  • Loading branch information
boegel authored Oct 27, 2023
2 parents 52f3b5f + df832a7 commit 36ecfa5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions easybuild/easyblocks/w/wxpython.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ def sanity_check_step(self):
files.extend([os.path.join('bin', 'wxrc')])
dirs.extend(['include', 'share'])
py_bins.extend(['alacarte', 'alamode', 'wrap'])
elif LooseVersion(self.version) >= LooseVersion("4.2"):
majver = '3.2' # this is 3.2 in ver 4.2.x
py_bins.extend(['slices', 'slicesshell'])
elif LooseVersion(self.version) >= LooseVersion("4.1"):
majver = '3.1' # this is 3.1 in ver 4.1.x
py_bins.extend(['slices', 'slicesshell'])
Expand Down

0 comments on commit 36ecfa5

Please sign in to comment.