From 3415ba036e3c9fce987517ba09b2cf4353a32074 Mon Sep 17 00:00:00 2001 From: Daniel Scheffler Date: Thu, 21 Jul 2022 13:58:25 +0200 Subject: [PATCH] Dropped Python 3.6 support due to end-of-life status. Signed-off-by: Daniel Scheffler --- docs/installation.rst | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 788b98b..080480c 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -59,8 +59,8 @@ you through the process. .. note:: - AROSICS has been tested with Python 3.6+. It should be fully compatible to all Python versions - from 3.6 onwards. Python 2.7 support was dropped in AROSICS 1.3 due to its end of life status. + AROSICS has been tested with Python 3.7+. It should be fully compatible to all Python versions + from 3.7 onwards. Python 2.7 support was dropped in AROSICS 1.3 due to its end of life status. .. _pip: https://pip.pypa.io diff --git a/setup.py b/setup.py index 5c3a91f..6f63d71 100644 --- a/setup.py +++ b/setup.py @@ -85,10 +85,10 @@ 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10' ], description="An Automated and Robust Open-Source Image Co-Registration Software for Multi-Sensor Satellite Data", entry_points={ @@ -118,7 +118,7 @@ "Algorithm paper": "https://www.mdpi.com/2072-4292/9/7/676", "Zenodo": "https://zenodo.org/record/5093940" }, - python_requires='>3.6', + python_requires='>3.7', scripts=["arosics/arosics_cli.py"], # TODO Deprecated in 1.4.1. Remove in future. setup_requires=req_setup, test_suite='tests',