From 71806471d6dfbc0929881ddb91e758142dc49f9c Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 5 Feb 2025 14:56:52 -0600 Subject: [PATCH 1/2] Add dependabot config --- .github/dependabot.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..e9d2350 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,20 @@ +version: 2 +updates: + # GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + groups: + actions: + patterns: + - "*" + assignees: + - "@mongodb/dbx-python" + # Python + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + assignees: + - "@mongodb/dbx-python" \ No newline at end of file From 36e5e45b8b8dbf520bf1618a0e4908c204fb6a00 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 5 Feb 2025 14:59:52 -0600 Subject: [PATCH 2/2] update test matrix --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4c6398c..d85a81f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.7"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.10"] fail-fast: true steps: - uses: actions/checkout@v2