From 91450194c848a02d9c3379780f43814d4611946a Mon Sep 17 00:00:00 2001 From: Ben Zhang Date: Sat, 28 Dec 2024 09:02:57 -0800 Subject: [PATCH] Relax Python requirement to 3.10 (#2) This PR makes the Python requirement 3.10. All tests pass on 3.10. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 79059a7..3dbc5f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ description = "Unpack Docker images for use with Apptainer and CVMFS" dependencies = [ "watcloud-utils @ git+https://github.com/WATonomous/watcloud-utils.git@c8ce1006716e65971f750560f90f442721b3777d", ] -requires-python = ">=3.11" +requires-python = ">=3.10" readme = "README.md" license = {text = "BSD-2-Clause"}