From a7e068fee96c60cf40df3c28b115feb2894e8716 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Jul 2026 04:14:12 +0000 Subject: [PATCH 1/2] deps(pip): bump the python-dependencies group across 1 directory with 5 updates Updates the requirements on [mypy](https://github.com/python/mypy), [gradio](https://github.com/gradio-app/gradio), [torch](https://github.com/pytorch/pytorch), [tqdm](https://github.com/tqdm/tqdm) and [uvicorn](https://github.com/Kludex/uvicorn) to permit the latest version. Updates `mypy` to 2.2.0 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v2.1.0...v2.2.0) Updates `gradio` from 6.19.0 to 6.20.0 - [Release notes](https://github.com/gradio-app/gradio/releases) - [Changelog](https://github.com/gradio-app/gradio/blob/main/CHANGELOG.md) - [Commits](https://github.com/gradio-app/gradio/compare/gradio@6.19.0...gradio@6.20.0) Updates `torch` from 2.12.1 to 2.13.0 - [Release notes](https://github.com/pytorch/pytorch/releases) - [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md) - [Commits](https://github.com/pytorch/pytorch/compare/v2.12.1...v2.13.0) Updates `tqdm` to 4.68.4 - [Release notes](https://github.com/tqdm/tqdm/releases) - [Commits](https://github.com/tqdm/tqdm/compare/v4.68.3...v4.68.4) Updates `uvicorn` to 0.51.0 - [Release notes](https://github.com/Kludex/uvicorn/releases) - [Changelog](https://github.com/Kludex/uvicorn/blob/main/docs/release-notes.md) - [Commits](https://github.com/Kludex/uvicorn/compare/0.50.2...0.51.0) --- updated-dependencies: - dependency-name: mypy dependency-version: 2.2.0 dependency-type: direct:development dependency-group: python-dependencies - dependency-name: gradio dependency-version: 6.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: torch dependency-version: 2.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: tqdm dependency-version: 4.68.4 dependency-type: direct:production dependency-group: python-dependencies - dependency-name: uvicorn dependency-version: 0.51.0 dependency-type: direct:production dependency-group: python-dependencies ... Signed-off-by: dependabot[bot] --- constraints.txt | 4 ++-- dataset-requirements.txt | 2 +- mount/requirements.txt | 2 +- pyproject.toml | 2 +- requirements-dev.txt | 2 +- requirements.txt | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/constraints.txt b/constraints.txt index 2a1317236..a94a91f34 100644 --- a/constraints.txt +++ b/constraints.txt @@ -25,7 +25,7 @@ Flask==3.1.3 flask-socketio==5.6.1 python-socketio==5.16.3 eventlet==0.41.0 -gradio==6.19.0 +gradio==6.20.0 pyttsx3==2.99 gTTS==2.5.4 @@ -35,7 +35,7 @@ matplotlib==3.10.9 seaborn==0.13.2 Pillow==12.3.0 -torch==2.12.1 +torch==2.13.0 numpy==1.26.4 jsonschema==4.26.0 diff --git a/dataset-requirements.txt b/dataset-requirements.txt index a60e3f656..9227c5a60 100644 --- a/dataset-requirements.txt +++ b/dataset-requirements.txt @@ -3,7 +3,7 @@ # Dataset downloading and processing datasets>=5.0.0 # Hugging Face datasets library -tqdm>=4.68.3 # Progress bars for downloads +tqdm>=4.68.4 # Progress bars for downloads # Optional: Data processing and analysis pandas>=2.2.0 # CSV/DataFrame operations diff --git a/mount/requirements.txt b/mount/requirements.txt index 857877731..77c1e569c 100644 --- a/mount/requirements.txt +++ b/mount/requirements.txt @@ -2,7 +2,7 @@ # Web Framework fastapi>=0.139.0 -uvicorn[standard]>=0.50.2 +uvicorn[standard]>=0.51.0 pydantic>=2.13.4 pydantic-settings>=2.14.2 diff --git a/pyproject.toml b/pyproject.toml index db3ebf7d1..d5573f626 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ dev = [ "ruff>=0.15.20", "black>=26.5.1", "isort>=8.0.1", - "mypy>=2.1.0", + "mypy>=2.2.0", "pydantic>=2.13.4", "pydantic-settings>=2.14.2", "tenacity>=9.1.4", diff --git a/requirements-dev.txt b/requirements-dev.txt index c87d424a8..c3fd3f6c5 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -7,6 +7,6 @@ watchdog>=6.0.0 black>=26.5.1 isort>=8.0.1 ruff>=0.15.20 -mypy>=2.1.0 +mypy>=2.2.0 pre-commit>=4.6.0 tomli>=2.4.1; python_version < "3.11" diff --git a/requirements.txt b/requirements.txt index 17549c8e7..7505d93f6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -32,7 +32,7 @@ Flask>=3.1.3 flask-socketio>=5.6.1 python-socketio>=5.16.3 eventlet>=0.41.0 # Optional async server for SocketIO (can fallback to threading) -gradio>=6.19.0 +gradio>=6.20.0 # Optional TTS fallbacks for local development: pyttsx3 (offline, Windows-friendly) and gTTS # If you want server-side TTS without Azure credentials, enable QAI_ENABLE_LOCAL_TTS and @@ -50,7 +50,7 @@ seaborn>=0.13.2 # Vision inference dependencies Pillow>=12.3.0 -torch>=2.12.1 +torch>=2.13.0 numpy>=1.26.4 # JSON schema validation library used by tests and cooking-ai utilities From bb9ac8d045e70027c77979bf0e6281369c786efa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Jul 2026 04:31:47 +0000 Subject: [PATCH 2/2] style: apply automated autofixes (ruff / prettier / clang-format) [CodeQL Advanced] --- .github/CodeQL Analysis.yml | 1 - .github/agent.md | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/CodeQL Analysis.yml b/.github/CodeQL Analysis.yml index 8b1378917..e69de29bb 100644 --- a/.github/CodeQL Analysis.yml +++ b/.github/CodeQL Analysis.yml @@ -1 +0,0 @@ - diff --git a/.github/agent.md b/.github/agent.md index 8b1378917..e69de29bb 100644 --- a/.github/agent.md +++ b/.github/agent.md @@ -1 +0,0 @@ -