From 2884f9697c058b7f4272e95eb9b02f1d67a283ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 May 2026 14:29:16 +0000 Subject: [PATCH 1/2] Bump the pip group across 1 directory with 2 updates Updates the requirements on [dulwich](https://github.com/dulwich/dulwich) and [typer](https://github.com/fastapi/typer) to permit the latest version. Updates `dulwich` to 1.2.1 - [Release notes](https://github.com/dulwich/dulwich/releases) - [Changelog](https://github.com/jelmer/dulwich/blob/main/NEWS) - [Commits](https://github.com/dulwich/dulwich/compare/dulwich-0.22.6...dulwich-1.2.1) Updates `typer` to 0.25.1 - [Release notes](https://github.com/fastapi/typer/releases) - [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md) - [Commits](https://github.com/fastapi/typer/compare/0.0.2...0.25.1) --- updated-dependencies: - dependency-name: dulwich dependency-version: 1.2.1 dependency-type: direct:production dependency-group: pip - dependency-name: typer dependency-version: 0.25.1 dependency-type: direct:development dependency-group: pip ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ed9775f1a..d71f51bc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ dependencies = [ "pymbolic>=2024.2.2", "sympy>=1.13.3", "pyyaml>=6.0.2", - "dulwich>=0.22.6,<1.2", + "dulwich>=0.22.6,<1.3", "paramiko>=3.5.1", "slixmpp>=1.8.3,<2", "docker>=7.1.0,<8", @@ -98,7 +98,7 @@ dev = [ "safety>=3.2.11,<4", # workaround for: # https://github.com/pyupio/safety/issues/784 - "typer<0.25", + "typer<0.26", # <9 because of https://github.com/sphinx-doc/sphinx/issues/3866#issuecomment-311181219 "sphinx>=8.1.3,<10", From bd654800cc448b5046559878ec19b64e2032368f Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Thu, 7 May 2026 09:14:36 -0500 Subject: [PATCH 2/2] Windows CI: Install gettext --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f3573641..a863648f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -137,13 +137,20 @@ jobs: - uses: actions/setup-python@v6 with: python-version: '3.x' + - name: Install gettext + shell: pwsh # Must use PowerShell for refreshenv to work + run: | + choco install gettext -y --no-progress + refreshenv - name: Install uv uses: astral-sh/setup-uv@v7 - name: Install Dependencies run: | uv sync --frozen - name: Run test suite + shell: bash run: | - bash ./.ci/run-tests-for-ci.sh + export PATH="$PATH:/c/Program Files/gettext-iconv/bin" + ./.ci/run-tests-for-ci.sh # vim: sw=2