SciPy-bundle-2020.11-intel-2020b-Python-3.8.6.eb 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. easyblock = 'PythonBundle'
  2. name = 'SciPy-bundle'
  3. version = '2020.11'
  4. versionsuffix = '-Python-3.8.2'
  5. homepage = 'https://python.org/'
  6. description = "Bundle of Python packages for scientific software"
  7. toolchain = {'name': 'intel', 'version': '2020b'}
  8. toolchainopts = {'pic': True, 'lowopt': True}
  9. dependencies = [
  10. ('Python', '3.8.6'),
  11. ('pybind11', '2.6.0', versionsuffix), # required by scipy
  12. ]
  13. use_pip = True
  14. exts_default_options = {'source_urls': [PYPI_SOURCE]}
  15. # order is important!
  16. exts_list = [
  17. ('hypothesis', '5.41.1', {
  18. 'checksums': ['06776c245b5eb25011040f94779fda6bbfa9def72074672af2e79a5e6bce8b38'],
  19. }),
  20. ('numpy', '1.19.4', {
  21. 'source_tmpl': '%(name)s-%(version)s.zip',
  22. 'checksums': ['141ec3a3300ab89c7f2b0775289954d193cc8edb621ea05f99db9cb181530512'],
  23. }),
  24. ('scipy', '1.5.4', {
  25. 'checksums': ['4a453d5e5689de62e5d38edf40af3f17560bfd63c9c5bd228c18c1f99afa155b'],
  26. }),
  27. ('mpi4py', '3.0.3', {
  28. 'checksums': ['012d716c8b9ed1e513fcc4b18e5af16a8791f51e6d1716baccf988ad355c5a1f'],
  29. }),
  30. ('pandas', '1.1.4', {
  31. 'checksums': ['a979d0404b135c63954dea79e6246c45dd45371a88631cdbb4877d844e6de3b6'],
  32. }),
  33. ('mpmath', '1.1.0', {
  34. 'checksums': ['fc17abe05fbab3382b61a123c398508183406fa132e0223874578e20946499f6'],
  35. }),
  36. ('deap', '1.3.1', {
  37. 'checksums': ['11f54493ceb54aae10dde676577ef59fc52d52f82729d5a12c90b0813c857a2f'],
  38. }),
  39. ]
  40. sanity_pip_check = True
  41. moduleclass = 'lang'