Skip to content

Commit

Permalink
Setups update Python version < 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksMat committed Aug 21, 2018
1 parent fd49309 commit 859c20d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion core/setup.py
Expand Up @@ -27,7 +27,7 @@ def get_version():


setup(name='eo-learn-core',
python_requires='>=3.5',
python_requires='>=3.5,<3.7',
version=get_version(),
description='Core Machine Learning Framework at Sinergise',
long_description=get_long_description(),
Expand Down
2 changes: 1 addition & 1 deletion coregistration/setup.py
Expand Up @@ -27,7 +27,7 @@ def get_version():


setup(name='eo-learn-coregistration',
python_requires='>=3.5',
python_requires='>=3.5,<3.7',
version=get_version(),
description='A collection of image co-registration utilities and EOTasks',
long_description=get_long_description(),
Expand Down
2 changes: 1 addition & 1 deletion features/setup.py
Expand Up @@ -27,7 +27,7 @@ def get_version():


setup(name='eo-learn-features',
python_requires='>=3.5',
python_requires='>=3.5,<3.7',
version=get_version(),
description='A collection of feature manipulation utilities and EOTasks',
long_description=get_long_description(),
Expand Down
2 changes: 1 addition & 1 deletion geometry/setup.py
Expand Up @@ -27,7 +27,7 @@ def get_version():


setup(name='eo-learn-geometry',
python_requires='>=3.5',
python_requires='>=3.5,<3.7',
version=get_version(),
description='A collection of geometry utilities and EOTasks',
long_description=get_long_description(),
Expand Down
2 changes: 1 addition & 1 deletion io/setup.py
Expand Up @@ -27,7 +27,7 @@ def get_version():


setup(name='eo-learn-io',
python_requires='>=3.5',
python_requires='>=3.5,<3.7',
version=get_version(),
description='A collection of input/output utilities and EOTasks',
long_description=get_long_description(),
Expand Down
2 changes: 1 addition & 1 deletion mask/setup.py
Expand Up @@ -27,7 +27,7 @@ def get_version():


setup(name='eo-learn-mask',
python_requires='>=3.5',
python_requires='>=3.5,<3.7',
version=get_version(),
description='A collection of masking utilities and EOTasks',
long_description=get_long_description(),
Expand Down
2 changes: 1 addition & 1 deletion ml_tools/setup.py
Expand Up @@ -27,7 +27,7 @@ def get_version():


setup(name='eo-learn-ml-tools',
python_requires='>=3.5',
python_requires='>=3.5,<3.7',
version=get_version(),
description='A collection of Machine Learning utilities',
long_description=get_long_description(),
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -12,7 +12,7 @@ def get_long_description():


setup(name='eo-learn',
python_requires='>=3.5',
python_requires='>=3.5,<3.7',
version='0.3.0',
description='Earth observation processing framework for machine learning in Python',
long_description=get_long_description(),
Expand Down

0 comments on commit 859c20d

Please sign in to comment.