From c1f045bbe443c33041780f60de3dfe2336b23fa5 Mon Sep 17 00:00:00 2001 From: Fabrizio Damicelli <40115969+fabridamicelli@users.noreply.github.com> Date: Tue, 1 Oct 2024 11:39:05 +0200 Subject: [PATCH] remove py 3.12 from matrix TorchServe blocks the build. We can get 3.12 back when this PR upstream is merged: https://github.com/pytorch/serve/pull/3332 --- .github/workflows/build-and-push.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-push.yaml b/.github/workflows/build-and-push.yaml index 9bcaccf..8d0a42e 100644 --- a/.github/workflows/build-and-push.yaml +++ b/.github/workflows/build-and-push.yaml @@ -68,7 +68,7 @@ jobs: fail-fast: false matrix: device: ['cpu', 'gpu'] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v4