-
Notifications
You must be signed in to change notification settings - Fork 773
{bio,lib,tools}[foss/2025.07,gfbf/2025.07,gompi/2025.07] GROMACS v2025.2, mpi4py v4.1.0, networkx v3.5 #23699
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
smoors
merged 3 commits into
easybuilders:develop
from
Thyre:20250818172743_new_pr_GROMACS20252
Aug 19, 2025
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
82 changes: 82 additions & 0 deletions
82
easybuild/easyconfigs/g/GROMACS/GROMACS-2025.2-foss-2025.07.eb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,82 @@ | ||
| # This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild | ||
| # | ||
| # Copyright:: Copyright 2012-2016 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, | ||
| # Ghent University / The Francis Crick Institute | ||
| # Authors:: | ||
| # * Wiktor Jurkowski <[email protected]> | ||
| # * Fotis Georgatos <[email protected]> | ||
| # * George Tsouloupas <[email protected]> | ||
| # * Kenneth Hoste <[email protected]> | ||
| # * Adam Huffman <[email protected]> | ||
| # * Ake Sandgren <[email protected]> | ||
| # * J. Sassmannshausen <Crick HPC team> | ||
| # * Dugan Witherick <[email protected]> | ||
| # * Christoph Siegert <[email protected]> | ||
| # License:: MIT/GPL | ||
|
|
||
| name = 'GROMACS' | ||
| version = '2025.2' | ||
|
|
||
| homepage = 'https://www.gromacs.org' | ||
| description = """ | ||
| GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the | ||
| Newtonian equations of motion for systems with hundreds to millions of | ||
| particles. | ||
|
|
||
| This is a CPU only build, containing both MPI and threadMPI binaries | ||
| for both single and double precision. | ||
|
|
||
| It also contains the gmxapi extension for the single precision MPI build. | ||
| """ | ||
|
|
||
| toolchain = {'name': 'foss', 'version': '2025.07'} | ||
| toolchainopts = {'openmp': True, 'usempi': True} | ||
|
|
||
| source_urls = [ | ||
| 'https://ftp.gromacs.org/pub/gromacs/', | ||
| 'ftp://ftp.gromacs.org/pub/gromacs/', | ||
| ] | ||
| sources = [SOURCELOWER_TAR_GZ] | ||
| patches = [ | ||
| 'GROMACS-2023.1_set_omp_num_threads_env_for_ntomp_tests.patch', | ||
| 'GROMACS-2023.1_fix_tests_for_gmx_thread_mpi.patch', | ||
| ] | ||
| checksums = [ | ||
| {'gromacs-2025.2.tar.gz': '0df09f9d45a99ef00e66b9baa9493a27e906813763a3b6c7672217c66b43ea11'}, | ||
| {'GROMACS-2023.1_set_omp_num_threads_env_for_ntomp_tests.patch': | ||
| '7f41bda16c9c2837624265dda4be252f655d1288ddc4486b1a2422af30d5d199'}, | ||
| {'GROMACS-2023.1_fix_tests_for_gmx_thread_mpi.patch': | ||
| '6df844bb3bbc51180446a3595c61a4ef195e5f975533a04cef76841aa763aec1'}, | ||
| ] | ||
|
|
||
| builddependencies = [ | ||
| ('CMake', '4.0.3'), | ||
| ('scikit-build-core', '0.11.5'), | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('Python', '3.13.5'), | ||
| ('SciPy-bundle', '2025.07'), | ||
| ('networkx', '3.5'), | ||
| ('mpi4py', '4.1.0'), | ||
| ('pybind11', '3.0.0'), | ||
| ] | ||
|
|
||
| # be a bit more forgiving w.r.t. timeouts for GROMACS test suite, | ||
| # see also https://gitlab.com/gromacs/gromacs/-/issues/5062 | ||
| configopts = "-DGMX_TEST_TIMEOUT_FACTOR=3" | ||
|
|
||
| exts_defaultclass = 'PythonPackage' | ||
|
|
||
| exts_default_options = { | ||
| 'source_urls': [PYPI_SOURCE], | ||
| } | ||
|
|
||
| exts_list = [ | ||
| ('gmxapi', '0.4.2', { | ||
| 'preinstallopts': 'export CMAKE_ARGS="-Dgmxapi_ROOT=%(installdir)s -C %(installdir)s/share/cmake/gromacs_mpi/gromacs-hints_mpi.cmake" && ', | ||
| 'checksums': ['c746c6498c73a75913d7fcb01c13cc001d4bcb82999e9bf91d63578565ed1a1f'], | ||
| }), | ||
| ] | ||
|
|
||
| moduleclass = 'bio' | ||
26 changes: 26 additions & 0 deletions
26
easybuild/easyconfigs/m/mpi4py/mpi4py-4.1.0-gompi-2025.07.eb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| easyblock = 'PythonBundle' | ||
|
|
||
| name = 'mpi4py' | ||
| version = '4.1.0' | ||
|
|
||
| homepage = 'https://github.com/mpi4py/mpi4py' | ||
| description = """MPI for Python (mpi4py) provides bindings of the Message Passing Interface (MPI) standard for | ||
| the Python programming language, allowing any Python program to exploit multiple processors.""" | ||
|
|
||
| toolchain = {'name': 'gompi', 'version': '2025.07'} | ||
|
|
||
| builddependencies = [ | ||
| ('Cython', '3.1.2'), | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('Python', '3.13.5'), | ||
| ] | ||
|
|
||
| exts_list = [ | ||
| (name, version, { | ||
| 'checksums': ['817492796bce771ccd809a6051cf68d48689815493b567a696ce7679260449cd'], | ||
| }), | ||
| ] | ||
|
|
||
| moduleclass = 'lib' |
20 changes: 20 additions & 0 deletions
20
easybuild/easyconfigs/n/networkx/networkx-3.5-gfbf-2025.07.eb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| easyblock = 'PythonPackage' | ||
|
|
||
| name = 'networkx' | ||
| version = '3.5' | ||
|
|
||
| homepage = 'https://pypi.python.org/pypi/networkx' | ||
| description = """NetworkX is a Python package for the creation, manipulation, | ||
| and study of the structure, dynamics, and functions of complex networks.""" | ||
|
|
||
| toolchain = {'name': 'gfbf', 'version': '2025.07'} | ||
|
|
||
| sources = [SOURCE_TAR_GZ] | ||
| checksums = ['d4c6f9cf81f52d69230866796b82afbccdec3db7ae4fbd1b65ea750feed50037'] | ||
|
|
||
| dependencies = [ | ||
| ('Python', '3.13.5'), | ||
| ('SciPy-bundle', '2025.07'), # required for numpy, scipy, ... | ||
| ] | ||
|
|
||
| moduleclass = 'tools' |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.