From 1d0facb4d514339154b4778667768f7710ee8896 Mon Sep 17 00:00:00 2001 From: Jared O'Neal Date: Fri, 26 Jun 2026 10:43:29 -0500 Subject: [PATCH 1/2] (Issue #20) Don't have dependabot look for Python updates. The current configuration isn't working because it has proposed updates to to change minimal version constraints such as meson>=1.6.0 to meson>=1.11.2, which insists on always using the latest and greatest version. Since the OpenBT Python package doesn't currently specify and explicit version constraints in general, let's just turn this off. --- .github/dependabot.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2ad2e04..68a01c0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,8 +12,3 @@ updates: schedule: interval: "weekly" target-branch: "main" - - package-ecosystem: "pip" - directory: "/openbt_pypkg" - schedule: - interval: "daily" - target-branch: "main" From aa674a9178dc87fa5a41fb00c0467492dc18ec05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 16:46:36 +0000 Subject: [PATCH 2/2] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test_py_sdist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_py_sdist.yml b/.github/workflows/test_py_sdist.yml index 3084cba..4fcb14a 100644 --- a/.github/workflows/test_py_sdist.yml +++ b/.github/workflows/test_py_sdist.yml @@ -24,7 +24,7 @@ jobs: build: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup Python uses: actions/setup-python@v6 with: