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

Fix Python version 3.6.*

parent 8e31b661
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ with open("README.md", "r") as fh: ...@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup( setuptools.setup(
name="biobb_common", name="biobb_common",
version="0.1.2", version="0.1.3",
author="Biobb developers", author="Biobb developers",
author_email="pau.andrio@bsc.es", author_email="pau.andrio@bsc.es",
description="Biobb_common is the base package required to use the biobb packages.", description="Biobb_common is the base package required to use the biobb packages.",
...@@ -18,11 +18,11 @@ setuptools.setup( ...@@ -18,11 +18,11 @@ setuptools.setup(
"Bioexcel": "https://bioexcel.eu/" "Bioexcel": "https://bioexcel.eu/"
}, },
packages=setuptools.find_packages(exclude=['docs']), packages=setuptools.find_packages(exclude=['docs']),
install_requires=['pyyaml', 'requests', 'biopython>=1.72'], install_requires=['pyyaml', 'requests', 'biopython>=1.73'],
python_requires='>=3', python_requires='==3.6.*',
classifiers=( classifiers=(
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6",
"License :: OSI Approved :: Apache Software License", "License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X", "Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX", "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