From e2267d612528b0ea7196bbb6809000cfcd0da354 Mon Sep 17 00:00:00 2001 From: abidingabi Date: Mon, 12 Aug 2024 14:36:16 -0400 Subject: [PATCH] Bump python version for linkcheck (#446) The old python version no longer works with the new dependencies, which causes link check to fail no matter what. This was missed because link check was disabled due to inactivity on the repo. --- .github/workflows/link-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml index a6282a44..c5e06011 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: "3.11" - name: Install Dependencies run: pip install -r source/requirements.txt - name: Check Links