From 5f1e0efa923daf281888c3903e30ba0f15aec77f Mon Sep 17 00:00:00 2001 From: Cody Cook Date: Tue, 17 Jun 2025 20:27:37 -0700 Subject: [PATCH] Fix the python versiob --- .forgejo/workflows/build.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index cf08b00..fb1f2a2 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -16,10 +16,9 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.10' + - name: Check Python version + run: | + python --version - name: Install dependencies run: |