Skip to content

Commit

Permalink
2020.4
Browse files Browse the repository at this point in the history
  • Loading branch information
PauAndrio committed Apr 1, 2020
1 parent 472039a commit 11e7344
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ The latest documentation of this package can be found in our readthedocs site:
[latest API documentation](http://biobb_common.readthedocs.io/en/latest/).

### Version
v2.0.1 2019.4
v3.0.0 2020.4

### Copyright & Licensing
This software has been developed in the [MMB group](http://mmb.irbbarcelona.org) at the [BSC](http://www.bsc.es/) & [IRB](https://www.irbbarcelona.org/) for the [European BioExcel](http://bioexcel.eu/), funded by the European Commission (EU H2020 [823830](http://cordis.europa.eu/projects/823830), EU H2020 [675728](http://cordis.europa.eu/projects/675728)).

* (c) 2015-2019 [Barcelona Supercomputing Center](https://www.bsc.es/)
* (c) 2015-2019 [Institute for Research in Biomedicine](https://www.irbbarcelona.org/)
* (c) 2015-2020 [Barcelona Supercomputing Center](https://www.bsc.es/)
* (c) 2015-2020 [Institute for Research in Biomedicine](https://www.irbbarcelona.org/)

Licensed under the
[Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0), see the file LICENSE for details.
Expand Down
6 changes: 3 additions & 3 deletions biobb_common/docs/source/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ The latest documentation of this package can be found in our readthedocs site:
[latest API documentation](http://biobb_common.readthedocs.io/en/latest/).

### Version
v2.0.1 2019.4
v3.0.0 2020.4

### Copyright & Licensing
This software has been developed in the [MMB group](http://mmb.irbbarcelona.org) at the [BSC](http://www.bsc.es/) & [IRB](https://www.irbbarcelona.org/) for the [European BioExcel](http://bioexcel.eu/), funded by the European Commission (EU H2020 [823830](http://cordis.europa.eu/projects/823830), EU H2020 [675728](http://cordis.europa.eu/projects/675728)).

* (c) 2015-2019 [Barcelona Supercomputing Center](https://www.bsc.es/)
* (c) 2015-2019 [Institute for Research in Biomedicine](https://www.irbbarcelona.org/)
* (c) 2015-2020 [Barcelona Supercomputing Center](https://www.bsc.es/)
* (c) 2015-2020 [Institute for Research in Biomedicine](https://www.irbbarcelona.org/)

Licensed under the
[Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0), see the file LICENSE for details.
Expand Down
18 changes: 9 additions & 9 deletions biobb_common/json_schemas/biobb_common.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@
"conda": "https://anaconda.org/bioconda/biobb_common",
"docker": "https://quay.io/repository/biocontainers/biobb_common",
"singularity": "https://www.singularity-hub.org/collections/2734/usage",
"version": "2.0.1",
"version": "3.0.0",
"tools" : [
{
"block" : "",
"tool" : "in house",
"block" : "",
"tool" : "in house",
"desc" : "Biobb Base structure & common elements."
}
],
"dep_pypi" : [
"install_requires=['pyyaml', 'requests', 'biopython==1.73']",
"python_requires='==3.6.*'"
],
"install_requires=['pyyaml', 'requests', 'biopython==1.76']",
"python_requires='==3.7.*'"
],
"dep_conda" : [
"python ==3.6.*",
"python ==3.7.*",
"pyyaml",
"requests",
"biopython ==1.73"
"biopython ==1.76"
],
"keywords" : [
"common"
]
}
}
2 changes: 1 addition & 1 deletion biobb_common/tools/file_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def zip_list(zip_file: str, file_list: typing.List[str], out_log: logging.Logger
Args:
zip_file (str): Output compressed zip file.
file_list (:obj:`list` of :obj:`str`): Input list of files to be compressed.
out_log (:obj:`Logger`): Input log object.
out_log (:obj:`logging.Logger`): Input log object.
"""
file_list.sort()
with zipfile.ZipFile(zip_file, 'w') as zip_f:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
python_requires='==3.7.*',
classifiers=(
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
Expand Down

0 comments on commit 11e7344

Please sign in to comment.