Skip to content
Snippets Groups Projects
Commit 56d138fb authored by Eleni Mathioulaki's avatar Eleni Mathioulaki
Browse files

Merge branch 'master' into 'master'

Master

See merge request technical-coordination/project-internal/devops/platform/ebrains-spack-builds!157
parents 1e2ab819 4855ba8a
No related branches found
No related tags found
2 merge requests!159create new experimental release,!157Master
Pipeline #18671 canceled with stage
in 5 seconds
...@@ -18,11 +18,11 @@ class BiobbCommon(PythonPackage): ...@@ -18,11 +18,11 @@ class BiobbCommon(PythonPackage):
# maintainers = ['github_user1', 'github_user2'] # maintainers = ['github_user1', 'github_user2']
# Versions # Versions
version('3.7.0', branch='master') version('3.8.1', branch='master')
# Dependencies # Dependencies
depends_on('py-setuptools') depends_on('py-setuptools')
depends_on('python@3.7:', type=('build', 'run')) depends_on('python@3.8:', type=('build', 'run'))
depends_on('py-pyyaml', type=('build', 'run')) depends_on('py-pyyaml', type=('build', 'run'))
depends_on('py-requests', type=('build', 'run')) depends_on('py-requests', type=('build', 'run'))
depends_on('py-biopython@1.78:1.80', type=('build', 'run')) depends_on('py-biopython@1.78:1.80', type=('build', 'run'))
File moved
from spack import *
class BiobbGromacs(PythonPackage):
"""Biobb_gromacs is the Biobb module collection to perform molecular
dynamics simulations using Gromacs"""
# Homepage and download url
homepage = "https://github.com/bioexcel/biobb_gromacs"
git = 'https://github.com/bioexcel/biobb_gromacs.git'
# Versions
version('3.8.0', branch='master')
# Dependencies
depends_on('python@3.8:', type=('build', 'run'))
depends_on('biobb-common')
depends_on('gromacs')
from spack import *
class BiobbMd(PythonPackage):
"""Biobb_md is the Biobb module collection to perform molecular
dynamics simulations"""
# Homepage and download url
homepage = "https://github.com/bioexcel/biobb_md"
git = 'https://github.com/bioexcel/biobb_md.git'
# Versions
version('3.7.1', branch='master')
# Dependencies
depends_on('biobb-common')
depends_on('python@3.7:', type=('build', 'run'))
depends_on('gromacs')
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment