From def927865ec6ad21155de525004d7e00d2e20826 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Delfino?= Date: Sun, 23 Mar 2025 08:56:27 -0300 Subject: [PATCH 1/2] Require the Python version used in the production environment --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d06e45b..259ba5d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "peewee==3.17.9", "sentry-sdk==2.22.0", ] -requires-python = "==3.11.*" +requires-python = "==3.10.*" authors = [ {name = "Pyar", email = "pyar@pyar.com"}, ] From db180a2894620744690e8555d1f86af1a04e162b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Delfino?= Date: Sun, 23 Mar 2025 10:48:48 -0300 Subject: [PATCH 2/2] Support Python >= 3.10 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 259ba5d..6934f48 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "peewee==3.17.9", "sentry-sdk==2.22.0", ] -requires-python = "==3.10.*" +requires-python = ">=3.10" authors = [ {name = "Pyar", email = "pyar@pyar.com"}, ]