From 1ef580a44df38a09933d4bd288ab0340081ab20a Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Thu, 7 Dec 2023 17:18:10 +0100
Subject: [PATCH] [setup] Require python>=3.10

---
 conda/meta.yaml | 4 ++--
 pyproject.toml  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/conda/meta.yaml b/conda/meta.yaml
index fd006be..8e71430 100644
--- a/conda/meta.yaml
+++ b/conda/meta.yaml
@@ -21,7 +21,7 @@ build:
 
 requirements:
   host:
-    - python >=3.9
+    - python >=3.10
     - pip
     - click >=8
     - click {{ click }}
@@ -29,7 +29,7 @@ requirements:
     - tomli-w {{ tomli_w }}
     - xdg {{ xdg }}
   run:
-    - python >=3.9
+    - python >=3.10
     - {{ pin_compatible('click') }}
     - {{ pin_compatible('tomli') }}
     - {{ pin_compatible('tomli-w') }}
diff --git a/pyproject.toml b/pyproject.toml
index ab1135d..e9f1e31 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -9,7 +9,7 @@
 [project]
 name = "clapper"
 version = "1.0.2b0"
-requires-python = ">=3.9"
+requires-python = ">=3.10"
 description = "Configuration Support for Python Packages and CLIs"
 readme = "README.md"
 license = {text = "BSD 3-Clause License"}
-- 
GitLab