Skip to content
Snippets Groups Projects
Commit 11e73449 authored by Pau Andrio's avatar Pau Andrio
Browse files

2020.4

parent 472039ad
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
......@@ -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.
......
......@@ -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"
]
}
\ No newline at end of file
}
......@@ -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:
......
......@@ -22,7 +22,7 @@ setuptools.setup(
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",
......
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