Skip to content
Merged
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,42 @@
easyblock = 'PythonBundle'

name = 'SciPy-bundle'
version = '2019.03'

homepage = 'http://python.org/'
description = "Bundle of Python packages for scientific software"

toolchain = {'name': 'fosscuda', 'version': '2019a'}
toolchainopts = {'pic': True, 'lowopt': True}
Copy link
Member

Choose a reason for hiding this comment

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

I see no reason for the lowopt here, I think it slipped in with SciPy-bundle-2019.03-foss-2019a.eb by mistake (and I'll open a separate PR to drop it).

Copy link
Member

Choose a reason for hiding this comment

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

I was just retesting with lowopt removed from SciPy-bundle-2019.03-foss-2019a.eb, and it seems like the scipy test suite exhibits failures with at least one test segfaulting on Intel Skylake X when lowopt is not enabled... :-/


multi_deps = {'Python': ['3.7.2', '2.7.15']}

use_pip = True

# order is important!
# package versions updated Mar 15th 2019
exts_list = [
('numpy', '1.16.2', {
'source_urls': ['https://pypi.python.org/packages/source/n/numpy/'],
'source_tmpl': '%(name)s-%(version)s.zip',
'checksums': ['6c692e3879dde0b67a9dc78f9bfb6f61c666b4562fd8619632d7043fb5b691b0'],
}),
('scipy', '1.2.1', {
'source_urls': ['https://pypi.python.org/packages/source/s/scipy/'],
'checksums': ['e085d1babcb419bbe58e2e805ac61924dac4ca45a07c9fa081144739e500aa3c'],
}),
('mpi4py', '3.0.1', {
'source_urls': ['http://bitbucket.org/mpi4py/mpi4py/downloads/'],
'checksums': ['6549a5b81931303baf6600fa2e3bc04d8bd1d5c82f3c21379d0d64a9abcca851'],
}),
('pandas', '0.24.2', {
'source_urls': ['https://pypi.python.org/packages/source/p/pandas/'],
'checksums': ['4f919f409c433577a501e023943e582c57355d50a724c589e78bc1d551a535a2'],
}),
('mpmath', '1.1.0', {
'source_urls': ['https://pypi.python.org/packages/source/m/mpmath/'],
'checksums': ['fc17abe05fbab3382b61a123c398508183406fa132e0223874578e20946499f6'],
}),
]

moduleclass = 'lang'