From d7b7d3916c01e305890ed9a058de826412341a03 Mon Sep 17 00:00:00 2001
From: Luc Hermitte <luc.hermitte@cs-soprasteria.com>
Date: Fri, 28 Feb 2025 15:26:47 +0100
Subject: [PATCH 1/2] =?UTF-8?q?DOC:=20Bump=20=C2=A9=20dates?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 1810a7ce..a682f788 100644
--- a/README.md
+++ b/README.md
@@ -55,7 +55,7 @@ is always available at https://gitlab.orfeo-toolbox.org/s1-tiling/s1tiling.
 S1Tiling installation has a few traps. Please read the [relevant documentation](https://s1-tiling.pages.orfeo-toolbox.org/s1tiling/latest/install.html)
 regarding OTB and GDAL installation.
 
-We highly recommand the usage of [dockers](https://gitlab.orfeo-toolbox.org/s1-tiling/s1tiling/container_registry/87), or of S1Tiling module for TREX users. 
+We highly recommand the usage of [dockers](https://gitlab.orfeo-toolbox.org/s1-tiling/s1tiling/container_registry/87), or of S1Tiling module for TREX users.
 
 # Community
 
@@ -65,8 +65,8 @@ We highly recommand the usage of [dockers](https://gitlab.orfeo-toolbox.org/s1-t
 
 ```
 All rights reserved.
-Copyright 2017-2024 (c) CNES.
-Copyright 2022-2024 (c) CS GROUP France.
+Copyright 2017-2025 (c) CNES.
+Copyright 2022-2025 (c) CS GROUP France.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
-- 
GitLab


From 174cd4de6c1cf54c2fce12dad4068024ab4a65ff Mon Sep 17 00:00:00 2001
From: Luc Hermitte <luc.hermitte@cs-soprasteria.com>
Date: Fri, 28 Feb 2025 15:28:40 +0100
Subject: [PATCH 2/2] Drop Python 3.8 support

From now on, S1Tiling may or may not work on Python 3.8.

We permit using new features from Python 3.9, yet we operate no change yet to
replace current code with new simplified constructs from Python 3.9.
---
 setup.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index e792d27f..7f19f071 100644
--- a/setup.py
+++ b/setup.py
@@ -82,7 +82,7 @@ setup(
     package_data={"": ["LICENSE", "NOTICE"]},
     include_package_data=True, # Take MANIFEST.in into account
 
-    python_requires='>=3.8, <4',
+    python_requires='>=3.9, <4',
     install_requires=[
         "click",
         "dask[distributed]>=2022.8.1",
@@ -150,7 +150,6 @@ setup(
         "Natural Language :: English",
         "Operating System :: OS Independent",
         "Programming Language :: Python",
-        "Programming Language :: Python :: 3.8",
         "Programming Language :: Python :: 3.9",
         "Programming Language :: Python :: 3.10",
         "Programming Language :: Python :: 3.11",
-- 
GitLab