From 47bfc31b9c98598b60d8d821b33d2e2e0e07d421 Mon Sep 17 00:00:00 2001 From: Hugo Rodger-Brown Date: Sat, 23 Sep 2023 11:04:22 +0100 Subject: [PATCH] Remove -es matrix reference --- .github/workflows/tox.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index a5f5693..a075d5a 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -40,17 +40,17 @@ jobs: python: ["3.8", "3.9", "3.10", "3.11"] django: ["32", "41", "main"] exclude: - - django: "50" - python: "3.8" - - django: "main" - python: "3.8" - - django: "50" - python: "3.9" - - django: "main" - python: "3.9" + - django: ["50","main"] + python: ["3.8","3.9"] + # - django: "main" + # python: "3.8" + # - django: "50" + # python: "3.9" + # - django: "main" + # python: "3.9" env: - TOXENV: py${{ matrix.python }}-django${{ matrix.django }}-es${{ matrix.es }} + TOXENV: py${{ matrix.python }}-django${{ matrix.django }} steps: - name: Check out the repository