Skip to content

Commit 36f6490

Browse files
committed
2025.2
1 parent 7049425 commit 36f6490

File tree

10 files changed

+37
-31
lines changed

10 files changed

+37
-31
lines changed

.github/env.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ channels:
44
- bioconda
55
- anaconda
66
dependencies:
7-
- biobb_common ==5.1.1
7+
- biobb_common ==5.2.0
88
- godmd ==1.7
99
- emboss

.github/workflows/linting_and_testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
os: [self-hosted]
24-
python-version: ["3.9", "3.10", "3.11", "3.12"]
24+
python-version: ["3.10", "3.11", "3.12"]
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- name: Check out repository code

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![](https://img.shields.io/conda/vn/bioconda/biobb_godmd?label=Conda)](https://anaconda.org/bioconda/biobb_godmd)
44
[![](https://img.shields.io/conda/dn/bioconda/biobb_godmd?label=Conda%20Downloads)](https://anaconda.org/bioconda/biobb_godmd)
55
[![](https://img.shields.io/badge/Docker-Quay.io-blue)](https://quay.io/repository/biocontainers/biobb_godmd?tab=tags)
6-
[![](https://img.shields.io/badge/Singularity-GalaxyProject-blue)](https://depot.galaxyproject.org/singularity/biobb_godmd:5.1.2--pyhdfd78af_0)
6+
[![](https://img.shields.io/badge/Singularity-GalaxyProject-blue)](https://depot.galaxyproject.org/singularity/biobb_godmd:5.2.0--pyhdfd78af_0)
77

88
[![](https://img.shields.io/badge/OS-Unix%20%7C%20MacOS-blue)](https://github.com/bioexcel/biobb_godmd)
99
[![](https://img.shields.io/pypi/pyversions/biobb-godmd.svg?label=Python%20Versions)](https://pypi.org/project/biobb-godmd/)
@@ -41,7 +41,7 @@ The latest documentation of this package can be found in our readthedocs site:
4141
[latest API documentation](http://biobb-godmd.readthedocs.io/en/latest/).
4242

4343
### Version
44-
v5.1.2 2025.1
44+
v5.2.0 2025.2
4545

4646
### Installation
4747
Using PIP:
@@ -51,7 +51,7 @@ Using PIP:
5151
* Installation:
5252

5353

54-
pip install "biobb_godmd>=5.1.2"
54+
pip install "biobb_godmd>=5.2.0"
5555

5656

5757
* Usage: [Python API documentation](https://biobb-godmd.readthedocs.io/en/latest/modules.html)
@@ -61,7 +61,7 @@ Using ANACONDA:
6161
* Installation:
6262

6363

64-
conda install -c bioconda "biobb_godmd>=5.1.2"
64+
conda install -c bioconda "biobb_godmd>=5.2.0"
6565

6666

6767
* Usage: With conda installation BioBBs can be used with the [Python API documentation](https://biobb-godmd.readthedocs.io/en/latest/modules.html) and the [Command Line documentation](https://biobb-godmd.readthedocs.io/en/latest/command_line.html)
@@ -71,13 +71,13 @@ Using DOCKER:
7171
* Installation:
7272

7373

74-
docker pull quay.io/biocontainers/biobb_godmd:5.1.2--pyhdfd78af_0
74+
docker pull quay.io/biocontainers/biobb_godmd:5.2.0--pyhdfd78af_0
7575

7676

7777
* Usage:
7878

7979

80-
docker run quay.io/biocontainers/biobb_godmd:5.1.2--pyhdfd78af_0 <command>
80+
docker run quay.io/biocontainers/biobb_godmd:5.2.0--pyhdfd78af_0 <command>
8181

8282

8383
Using SINGULARITY:
@@ -87,7 +87,7 @@ Using SINGULARITY:
8787
* Installation:
8888

8989

90-
singularity pull --name biobb_godmd.sif https://depot.galaxyproject.org/singularity/biobb_godmd:5.1.2--pyhdfd78af_0
90+
singularity pull --name biobb_godmd.sif https://depot.galaxyproject.org/singularity/biobb_godmd:5.2.0--pyhdfd78af_0
9191

9292

9393
* Usage:

biobb_godmd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
name = "biobb_godmd"
44
__all__ = ["godmd"]
5-
__version__ = "5.1.2"
5+
__version__ = "5.2.0"

biobb_godmd/docs/source/change_log.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Biobb GOdMD changelog
22

3+
## What's new in version [5.2.0](https://github.com/bioexcel/biobb_amber/releases/tag/v5.2.0)?
4+
5+
### Changes
6+
7+
* [UPDATE] Update to biobb_common 5.2.0
8+
39
## What's new in version [5.1.2](https://github.com/bioexcel/biobb_godmd/releases/tag/v5.1.2)?
410

511
### Changes

biobb_godmd/docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@
7878
# built documents.
7979
#
8080
# The short X.Y version.
81-
version = "5.1.2"
81+
version = "5.2.0"
8282
# The full version, including alpha/beta/rc tags.
83-
release = "5.1.2"
83+
release = "5.2.0"
8484

8585
# The language for content autogenerated by Sphinx. Refer to documentation
8686
# for a list of supported languages.

biobb_godmd/docs/source/readme.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![](https://img.shields.io/conda/vn/bioconda/biobb_godmd?label=Conda)](https://anaconda.org/bioconda/biobb_godmd)
44
[![](https://img.shields.io/conda/dn/bioconda/biobb_godmd?label=Conda%20Downloads)](https://anaconda.org/bioconda/biobb_godmd)
55
[![](https://img.shields.io/badge/Docker-Quay.io-blue)](https://quay.io/repository/biocontainers/biobb_godmd?tab=tags)
6-
[![](https://img.shields.io/badge/Singularity-GalaxyProject-blue)](https://depot.galaxyproject.org/singularity/biobb_godmd:5.1.2--pyhdfd78af_0)
6+
[![](https://img.shields.io/badge/Singularity-GalaxyProject-blue)](https://depot.galaxyproject.org/singularity/biobb_godmd:5.2.0--pyhdfd78af_0)
77

88
[![](https://img.shields.io/badge/OS-Unix%20%7C%20MacOS-blue)](https://github.com/bioexcel/biobb_godmd)
99
[![](https://img.shields.io/pypi/pyversions/biobb-godmd.svg?label=Python%20Versions)](https://pypi.org/project/biobb-godmd/)
@@ -41,7 +41,7 @@ The latest documentation of this package can be found in our readthedocs site:
4141
[latest API documentation](http://biobb-godmd.readthedocs.io/en/latest/).
4242

4343
### Version
44-
v5.1.2 2025.1
44+
v5.2.0 2025.2
4545

4646
### Installation
4747
Using PIP:
@@ -51,7 +51,7 @@ Using PIP:
5151
* Installation:
5252

5353

54-
pip install "biobb_godmd>=5.1.2"
54+
pip install "biobb_godmd>=5.2.0"
5555

5656

5757
* Usage: [Python API documentation](https://biobb-godmd.readthedocs.io/en/latest/modules.html)
@@ -61,7 +61,7 @@ Using ANACONDA:
6161
* Installation:
6262

6363

64-
conda install -c bioconda "biobb_godmd>=5.1.2"
64+
conda install -c bioconda "biobb_godmd>=5.2.0"
6565

6666

6767
* Usage: With conda installation BioBBs can be used with the [Python API documentation](https://biobb-godmd.readthedocs.io/en/latest/modules.html) and the [Command Line documentation](https://biobb-godmd.readthedocs.io/en/latest/command_line.html)
@@ -71,13 +71,13 @@ Using DOCKER:
7171
* Installation:
7272

7373

74-
docker pull quay.io/biocontainers/biobb_godmd:5.1.2--pyhdfd78af_0
74+
docker pull quay.io/biocontainers/biobb_godmd:5.2.0--pyhdfd78af_0
7575

7676

7777
* Usage:
7878

7979

80-
docker run quay.io/biocontainers/biobb_godmd:5.1.2--pyhdfd78af_0 <command>
80+
docker run quay.io/biocontainers/biobb_godmd:5.2.0--pyhdfd78af_0 <command>
8181

8282

8383
Using SINGULARITY:
@@ -87,7 +87,7 @@ Using SINGULARITY:
8787
* Installation:
8888

8989

90-
singularity pull --name biobb_godmd.sif https://depot.galaxyproject.org/singularity/biobb_godmd:5.1.2--pyhdfd78af_0
90+
singularity pull --name biobb_godmd.sif https://depot.galaxyproject.org/singularity/biobb_godmd:5.2.0--pyhdfd78af_0
9191

9292

9393
* Usage:

biobb_godmd/docs/source/schema.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"applicationSubCategory": "http://www.edamontology.org/topic_3892",
1111
"citation": "https://www.nature.com/articles/s41597-019-0177-4",
1212
"license": "https://www.apache.org/licenses/LICENSE-2.0",
13-
"softwareVersion": "5.1.2",
13+
"softwareVersion": "5.2.0",
1414
"applicationSuite": "BioBB BioExcel Building Blocks",
1515
"codeRepository": "https://github.com/bioexcel/biobb_godmd",
1616
"isAccessibleForFree": "True",

biobb_godmd/json_schemas/biobb_godmd.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"github": "https://github.com/bioexcel/biobb_godmd",
55
"readthedocs": "https://biobb-godmd.readthedocs.io/en/latest/",
66
"conda": "https://anaconda.org/bioconda/biobb_godmd",
7-
"docker": "https://quay.io/biocontainers/biobb_godmd:5.1.2--pyhdfd78af_0",
8-
"singularity": "https://depot.galaxyproject.org/singularity/biobb_godmd:5.1.2--pyhdfd78af_0",
9-
"version": "5.1.2",
7+
"docker": "https://quay.io/biocontainers/biobb_godmd:5.2.0--pyhdfd78af_0",
8+
"singularity": "https://depot.galaxyproject.org/singularity/biobb_godmd:5.2.0--pyhdfd78af_0",
9+
"version": "5.2.0",
1010
"rest": true,
1111
"tools": [
1212
{
@@ -27,12 +27,12 @@
2727
}
2828
],
2929
"dep_pypi": [
30-
"install_requires=['biobb_common==5.1.1']",
31-
"python_requires='>=3.9'"
30+
"install_requires=['biobb_common==5.2.0']",
31+
"python_requires='>=3.10'"
3232
],
3333
"dep_conda": [
34-
"python >=3.9",
35-
"biobb_common ==5.1.1",
34+
"python >=3.10",
35+
"biobb_common ==5.2.0",
3636
"godmd ==1.7",
3737
"emboss"
3838
],

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="biobb_godmd",
8-
version="5.1.2",
8+
version="5.2.0",
99
author="Biobb developers",
1010
author_email="adam.hospital@irbbarcelona.org",
1111
description="Biobb_godmd is a BioBB category for GOdMD tool (protein conformational transitions).",
@@ -19,8 +19,8 @@
1919
},
2020
packages=setuptools.find_packages(exclude=["docs", "test"]),
2121
package_data={"biobb_godmd": ["py.typed"]},
22-
install_requires=["biobb_common==5.1.1"],
23-
python_requires=">=3.9",
22+
install_requires=["biobb_common==5.2.0"],
23+
python_requires=">=3.10",
2424
entry_points={
2525
"console_scripts": [
2626
"godmd_prep = biobb_godmd.godmd.godmd_prep:main",
@@ -29,7 +29,7 @@
2929
},
3030
classifiers=[
3131
"Development Status :: 5 - Production/Stable",
32-
"Programming Language :: Python :: 3.9",
32+
"Programming Language :: Python :: 3.10",
3333
"Programming Language :: Python :: 3.10",
3434
"Programming Language :: Python :: 3.11",
3535
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)