From 58f93e0615d76f3d2b5ef74d44f333e020bb7579 Mon Sep 17 00:00:00 2001 From: zmeir Date: Wed, 3 Jan 2024 12:30:09 +0200 Subject: [PATCH] Drop support for python 3.9 The `bitbucket_server_provider.py` uses structural pattern matching that was introduced in python 3.10, and so trying to run any command with python 3.9 will fail (because we import all the providers right at the top of `pr_agent.git_providers`) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0e1289f4..37be93e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ maintainers = [ ] description = "CodiumAI PR-Agent is an open-source tool to automatically analyze a pull request and provide several types of feedback" readme = "README.md" -requires-python = ">=3.9" +requires-python = ">=3.10" keywords = ["ai", "tool", "developer", "review", "agent"] license = {file = "LICENSE", name = "Apache 2.0 License"} classifiers = [