From b461e8b55c6de63a793aa465d46e8e8a7139d2ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 May 2026 09:10:49 +0000 Subject: [PATCH 1/2] build(deps): bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/python.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 315f6b0..c497d73 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -17,7 +17,7 @@ jobs: - os: macos-latest python-version: '3.10' steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - uses: actions/setup-python@v6 @@ -45,7 +45,7 @@ jobs: needs: build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - uses: actions/setup-python@v6 From 3dca1638a9ee18c580a6eba8ebafa8844ab45adf Mon Sep 17 00:00:00 2001 From: Mateusz Bysiek <1270332+mbdevpl@users.noreply.github.com> Date: Wed, 6 May 2026 19:29:42 +0900 Subject: [PATCH 2/2] test: use git working dirs in repo examples --- test/examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/examples.py b/test/examples.py index 18f60ce..ffb6899 100644 --- a/test/examples.py +++ b/test/examples.py @@ -11,7 +11,7 @@ _GIT_REPOS_ROOT = pathlib.Path(os.environ.get('EXAMPLE_PROJECTS_PATH', '..')).resolve() -GIT_REPO_EXAMPLES = list(_ for _ in _GIT_REPOS_ROOT.glob('**/.git') if _.is_dir()) +GIT_REPO_EXAMPLES = list(_.parent for _ in _GIT_REPOS_ROOT.glob('**/.git') if _.is_dir()) def python_lib_dir() -> pathlib.Path: