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 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