From 6bbb951779ae54d2db4e87d1ccdefcf905ac4cb4 Mon Sep 17 00:00:00 2001 From: Noelle Leigh <5957867+noelleleigh@users.noreply.github.com> Date: Mon, 28 Oct 2024 10:00:55 -0400 Subject: [PATCH] test.yml: Rely on .python-version for version `actions/setup-python@v4` supports reading the desired Python version from a `.python-version` file, so this way the two versions won't get out-of-sync. This is motived because Python 3.8.18 and 3.8.19 have different error messages for pyright tests being run, so the Python version should match exactly between the two. --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 19b93e64c..344c8d66a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,6 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: "3.8" cache: "poetry" - name: Use Node.js