From 3b6e18219f5b5bb5aeb9e03cc516b2af0a7abb6f Mon Sep 17 00:00:00 2001 From: Lakshman Patel Date: Tue, 25 Aug 2026 09:54:12 +0530 Subject: [PATCH 1/3] chore: remove Dependabot --- .github/dependabot.yml | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 8f23b91..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,40 +0,0 @@ -version: 2 -updates: - - package-ecosystem: pip - directory: / - schedule: - interval: weekly - day: monday - time: "09:00" - timezone: UTC - open-pull-requests-limit: 10 - labels: - - "dependencies" - - "python" - - "sdk" - commit-message: - prefix: "deps" - include: scope - groups: - production-dependencies: - dependency-type: production - development-dependencies: - dependency-type: development - # Ignore patches that conflict with pyproject.toml version constraints - ignore: - - dependency-name: "*" - update-types: ["version-update:semver-patch"] - - package-ecosystem: github-actions - directory: / - schedule: - interval: weekly - day: monday - time: "09:00" - timezone: UTC - open-pull-requests-limit: 5 - labels: - - "dependencies" - - "github-actions" - commit-message: - prefix: "ci" - include: scope From 8475014f1ae4004ca69924b2545cf0c7f9da2574 Mon Sep 17 00:00:00 2001 From: Lakshman Patel Date: Wed, 26 Aug 2026 23:44:02 +0530 Subject: [PATCH 2/3] chore: require Python >=3.13 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b365c7a..d6f37b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ dynamic = ["version"] description = "Python SDK for the Hawk daemon API" readme = "README.md" license = "MIT" -requires-python = ">=3.9" +requires-python = ">=3.13" authors = [ { name = "Hawk Contributors" }, ] From 752d80b1238d54818807c45e1f15c29851f12b7c Mon Sep 17 00:00:00 2001 From: Lakshman Patel Date: Wed, 26 Aug 2026 23:47:48 +0530 Subject: [PATCH 3/3] chore(ci): test only Python 3.13 to match requires-python --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fae6dd2..d59155f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.13"] steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 @@ -60,7 +60,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 with: - python-version: "3.12" + python-version: "3.13" cache: pip - name: Install run: | @@ -82,7 +82,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 with: - python-version: "3.12" + python-version: "3.13" cache: pip - name: Install run: | @@ -98,7 +98,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 with: - python-version: "3.12" + python-version: "3.13" cache: pip - name: Install run: | @@ -130,7 +130,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 with: - python-version: "3.12" + python-version: "3.13" cache: pip - name: Install build tools run: |