From 07ea4e6db135a14f50ae605618d23b65bfe6e40c Mon Sep 17 00:00:00 2001 From: Yoonho Hann <83288181+hnnynh@users.noreply.github.com> Date: Sat, 29 Jun 2024 23:19:39 +0900 Subject: [PATCH] chore: fix matrix python-version Django 5.0 supports Python 3.10, 3.11, and 3.12 --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 553e671..0a0293f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,7 +13,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.9, "3.10", 3.11, 3.12] + python-version: ["3.10", 3.11, 3.12] steps: - uses: actions/checkout@v4