easyconfigs-it4i/s/SciPy-bundle/SciPy-bundle-2020.11-intel-2020a.eb
Lukáš Krupčík e763df4c4a new file: a/ASE/ASE-3.21.1-Py-3.7.eb
new file:   a/ASE/ASE-3.21.1-intel-2020a.eb
	new file:   c/CMake/CMake-3.18.4-GCCcore-9.3.0.eb
	new file:   c/cURL/cURL-7.72.0-GCCcore-9.3.0.eb
	new file:   e/Eigen/Eigen-3.3.8-GCCcore-9.3.0.eb
	new file:   f/freetype/freetype-2.10.3-GCCcore-9.3.0.eb
	new file:   g/GPAW-setups/GPAW-setups-0.9.20000.eb
	new file:   g/GPAW/GPAW-21.1.0-intel-2020a-ASE-3.21.1.eb
	new file:   g/GPAW/GPAW-21.1.0-intel-2020a-Py-3.7.eb
	new file:   h/hypothesis/hypothesis-5.41.2-GCCcore-9.3.0.eb
	new file:   i/iccifort/iccifort-2020.4.304.eb
	new file:   l/libarchive/libarchive-3.4.3-GCCcore-9.3.0.eb
	new file:   l/libjpeg-turbo/libjpeg-turbo-2.0.5-GCCcore-9.3.0.eb
	new file:   m/matplotlib/matplotlib-3.3.3-intel-2020a.eb
	new file:   n/NASM/NASM-2.15.05-GCCcore-9.3.0.eb
	new file:   o/OpenMPI/OpenMPI-4.0.5-GCC-10.2.0.eb
	new file:   p/Pillow/Pillow-8.0.1-GCCcore-9.3.0.eb
	new file:   p/Python/Python-3.8.6-GCCcore-9.3.0.eb
	new file:   p/pybind11/pybind11-2.6.0-GCCcore-9.3.0.eb
	new file:   s/SQLite/SQLite-3.33.0-GCCcore-9.3.0.eb
	new file:   s/SciPy-bundle/SciPy-bundle-2020.11-intel-2020a.eb
	new file:   s/spglib-python/spglib-python-1.16.0-intel-2020a.eb
	new file:   t/Tkinter/Tkinter-3.8.6-GCCcore-9.3.0.eb
2021-02-10 11:53:17 +01:00

69 lines
2.2 KiB
Plaintext

# IT4Innovations 2021
# LK
easyblock = 'PythonBundle'
name = 'SciPy-bundle'
version = '2020.11'
homepage = 'https://python.org/'
description = "Bundle of Python packages for scientific software"
toolchain = {'name': 'intel', 'version': '2020a'}
toolchainopts = {'pic': True, 'lowopt': True}
builddependencies = [('hypothesis', '5.41.2')]
dependencies = [
('Python', '3.8.6'),
('pybind11', '2.6.0'), # required by scipy
]
use_pip = True
exts_default_options = {'source_urls': [PYPI_SOURCE]}
# order is important!
exts_list = [
('numpy', '1.19.4', {
'source_tmpl': '%(name)s-%(version)s.zip',
'patches': [
'numpy-1.18.2-mkl.patch',
'numpy-1.19.4_disable-broken-test.patch',
],
'checksums': [
'141ec3a3300ab89c7f2b0775289954d193cc8edb621ea05f99db9cb181530512', # numpy-1.19.4.zip
'ea25ad5c0148c1398d282f0424e642fb9815a1a80f4512659b018e2adc378bcf', # numpy-1.18.2-mkl.patch
# numpy-1.19.4_disable-broken-test.patch
'9cc8bbd106ecba603254536101f53fdc200e81d43ca4800b5a84be9b645e9320',
],
}),
('scipy', '1.5.4', {
'checksums': ['4a453d5e5689de62e5d38edf40af3f17560bfd63c9c5bd228c18c1f99afa155b'],
}),
('mpi4py', '3.0.3', {
'checksums': ['012d716c8b9ed1e513fcc4b18e5af16a8791f51e6d1716baccf988ad355c5a1f'],
}),
('numexpr', '2.7.1', {
'checksums': ['b0d239d9827e1bcee08344fd05835823bc60aff97232e35a928214d03ff802b1'],
}),
('Bottleneck', '1.3.2', {
'checksums': ['20179f0b66359792ea283b69aa16366419132f3b6cf3adadc0c48e2e8118e573'],
}),
('pandas', '1.1.4', {
'checksums': ['a979d0404b135c63954dea79e6246c45dd45371a88631cdbb4877d844e6de3b6'],
# strip out use of -Werror to avoid failing compilation due to Intel compiler warning
'preinstallopts': """sed -i 's@extra_compile_args = \["-Werror"\]@extra_compile_args = []@g' setup.py && """,
}),
('mpmath', '1.1.0', {
'checksums': ['fc17abe05fbab3382b61a123c398508183406fa132e0223874578e20946499f6'],
}),
('deap', '1.3.1', {
'checksums': ['11f54493ceb54aae10dde676577ef59fc52d52f82729d5a12c90b0813c857a2f'],
}),
]
sanity_pip_check = True
moduleclass = 'lang'