From f1e38180a57cb1329d7fb8347476b16251ee5a7b Mon Sep 17 00:00:00 2001 From: Nicholas Felt Date: Tue, 21 Apr 2026 15:17:01 -0700 Subject: [PATCH] Update Python version markers in configuration files for consistency --- .github/workflows/code-linting.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code-linting.yml b/.github/workflows/code-linting.yml index e74479c..ed03bf2 100644 --- a/.github/workflows/code-linting.yml +++ b/.github/workflows/code-linting.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: x # any version + python-version: 3.8 # PYTHON VERSION MARKER (update all locations that use this marker simultaneously) check-latest: true - name: Install tox run: python -m pip install tox diff --git a/pyproject.toml b/pyproject.toml index e471d6c..260496c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ wrap-summaries = 0 [tool.ruff] line-length = 100 -target-version = "py38" # always generate Python 3.8 compatible code +target-version = "py38" # PYTHON VERSION MARKER (update all locations that use this marker simultaneously) [tool.ruff.lint] fixable = ["ALL"]