From 80e0e21ad67a1398ed71463ccb93c6a9c6ba77e1 Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Wed, 8 Nov 2023 09:59:38 -0500 Subject: [PATCH] Specify Python version for CI This fixes a copy-paste error, where this code was drawn from a file specifying a test matrix of Python versions. Signed-off-by: Alex Nelson --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1045aa9..0411b3b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,10 +32,10 @@ jobs: java-version: '11' - name: Install Graphviz run: sudo apt-get install --yes graphviz - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} + python-version: '3.12' - name: Pre-commit Checks run: | pip -q install pre-commit