From f036c7e228869679856196b8ebcb69ff4d1cd52b Mon Sep 17 00:00:00 2001 From: zacharyburnett Date: Wed, 27 May 2026 12:23:55 -0400 Subject: [PATCH] remove reusable workflow as redundant --- .github/workflows/supported-pythons.yml | 52 ------------------------- .github/workflows/test.yml | 10 ----- 2 files changed, 62 deletions(-) delete mode 100644 .github/workflows/supported-pythons.yml diff --git a/.github/workflows/supported-pythons.yml b/.github/workflows/supported-pythons.yml deleted file mode 100644 index 99135d1..0000000 --- a/.github/workflows/supported-pythons.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: supported Python versions - -on: - workflow_call: - inputs: - package: - description: package source repository containing `pyproject.toml` (defaults to that of calling workflow) - type: string - required: false - default: "" - package-ref: - description: branch or tag of package source - type: string - required: false - default: "" - no-eoas: - description: also prune end-of-active-support versions of Python - type: boolean - required: false - default: false - outputs: - versions: - description: "Python minor versions as a JSON list" - value: ${{ jobs.supported-pythons.outputs.versions }} - oldest: - description: "oldest supported Python minor version" - value: ${{ jobs.supported-pythons.outputs.oldest }} - latest: - description: "latest supported Python minor version" - value: ${{ jobs.supported-pythons.outputs.latest }} - -permissions: {} - -jobs: - supported-pythons: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - with: - repository: zacharyburnett/supported-pythons - ref: 1.0.0 - persist-credentials: false - - id: supported-pythons - uses: ./ - with: - package: ${{ inputs.package }} - package-ref: ${{ inputs.package-ref }} - no-eoas: ${{ inputs.no-eoas }} - outputs: - versions: ${{ steps.supported-pythons.outputs.versions }} - oldest: ${{ steps.supported-pythons.outputs.oldest }} - latest: ${{ steps.supported-pythons.outputs.latest }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c1fec3f..ec6571c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,13 +29,3 @@ jobs: uses: ./ with: package: ${{ matrix.repository }} - test-workflow: - strategy: - matrix: - repository: - - spacetelescope/romancal - - psf/requests - fail-fast: false - uses: ./.github/workflows/supported-pythons.yml - with: - package: ${{ matrix.repository }}