From ffb8eee9262557c6132d9f9c35d6b552c3a8f369 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Thu, 3 Sep 2026 11:24:50 -0600 Subject: [PATCH] chore: Move requirements file under tools/ * As the requirements.txt exists only for the stale-wheels updater GitHub Action, move this under the tools/ directory to have the top level directory space be disambiguated. --- .github/workflows/ci.yml | 2 +- .github/workflows/stale-wheels.yml | 2 +- AGENTS.md | 6 +++--- requirements.txt => tools/requirements.txt | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) rename requirements.txt => tools/requirements.txt (88%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da66aab..9ff8497 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: python-version: '3.14' - name: Run the tests - run: uv run --with-requirements requirements.txt tests/test_check_stale_wheels.py + run: uv run --with-requirements tools/requirements.txt tests/test_check_stale_wheels.py test: name: "test upload via action" diff --git a/.github/workflows/stale-wheels.yml b/.github/workflows/stale-wheels.yml index 332d6d4..59ebfae 100644 --- a/.github/workflows/stale-wheels.yml +++ b/.github/workflows/stale-wheels.yml @@ -37,7 +37,7 @@ jobs: ISSUE_OPENER_TOKEN: ${{ secrets.ISSUE_OPENER_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - uv run --with-requirements requirements.txt tools/check_stale_wheels.py ${{ inputs.dry_run && '--dry-run' || '' }} + uv run --with-requirements tools/requirements.txt tools/check_stale_wheels.py ${{ inputs.dry_run && '--dry-run' || '' }} report-failure: needs: [report] diff --git a/AGENTS.md b/AGENTS.md index ffb298c..14711c0 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -20,11 +20,11 @@ It is called as a job rather than used as a composite action because `ci.yml` ch Pin third-party actions to a full commit SHA with a `# vX.Y.Z` comment; Dependabot updates them monthly as a single group. -Run the Python tools with `uv run --with-requirements requirements.txt