From a3b99ad2b0e7958e48fa98aca6379d5956029db7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 27 Jun 2025 10:13:17 +0000 Subject: [PATCH 1/2] Update all non-major dependencies --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e6b6198d..2a81d042 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,7 +52,7 @@ get-hashes = 'codemodder.scripts.get_hashes:main' [project.optional-dependencies] semgrep = [ - "semgrep>=1.126,<1.127", + "semgrep>=1.127,<1.128", ] test = [ "azure-ai-inference>=1.0.0b1,<2.0", @@ -67,7 +67,7 @@ test = [ "Jinja2~=3.1.2", "jsonschema~=4.24.0", "lxml>=6.0.0,<6.1.0", - "openai>=1.90,<1.91", + "openai>=1.92,<1.93", "mock==5.2.*", "pre-commit<5", "Pyjwt~=2.10.0", @@ -81,20 +81,20 @@ test = [ "security==1.3.1", "types-mock==5.2.*", "django>=4,<6", - "numpy ==2.2.6; python_version == '3.10'", + "numpy ==2.3.1; python_version == '3.10'", "numpy ~= 2.3.0; python_version > '3.10'", "flask_wtf~=1.2.0", "fickling~=0.1.0,>=0.1.3", "graphql-server~=3.0.0b7", "unidiff>=0.7.5", - "semgrep>=1.126,<1.127", + "semgrep>=1.127,<1.128", ] complexity = [ "radon==6.0.*", "xenon==0.9.*", ] openai = [ - "openai>=1.90,<1.91", + "openai>=1.92,<1.93", ] azure = [ "azure-ai-inference>=1.0.0b1,<2.0", From a1dcf7a33b0821622ccc50c5d3cc231d6c904878 Mon Sep 17 00:00:00 2001 From: clavedeluna Date: Fri, 27 Jun 2025 07:15:38 -0300 Subject: [PATCH 2/2] tell renovate to stop updating numpy 3.10 --- pyproject.toml | 2 +- renovate.json | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2a81d042..a996b51d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,7 +81,7 @@ test = [ "security==1.3.1", "types-mock==5.2.*", "django>=4,<6", - "numpy ==2.3.1; python_version == '3.10'", + "numpy ==2.2.6; python_version == '3.10'", "numpy ~= 2.3.0; python_version > '3.10'", "flask_wtf~=1.2.0", "fickling~=0.1.0,>=0.1.3", diff --git a/renovate.json b/renovate.json index 4bf472b4..016f456f 100644 --- a/renovate.json +++ b/renovate.json @@ -8,6 +8,11 @@ { "matchPackageNames": ["pydantic"], "enabled": false + }, + { + "matchPackageNames": ["numpy"], + "matchCurrentValue": "==2.2.6", + "enabled": false } ] }