From 88db7d5b946a7ca13c6bd860fe008f4919819af9 Mon Sep 17 00:00:00 2001 From: Jake Beal Date: Wed, 25 Oct 2023 18:22:51 -0500 Subject: [PATCH] Roll back Windows and Mac builds to Python 3.11 as a workaround for https://github.com/RDFLib/pySHACL/issues/212 --- .github/workflows/python-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 9b4b9ca..9b0cdf7 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -20,9 +20,9 @@ jobs: include: # Also test on macOS and Windows using latest Python 3 - os: macos-latest - python-version: '3.x' + python-version: '3.11' # Return to 3.x after resolution of https://github.com/RDFLib/pySHACL/issues/212 - os: windows-latest - python-version: '3.x' + python-version: '3.11' # Return to 3.x after resolution of https://github.com/RDFLib/pySHACL/issues/212 steps: - uses: actions/checkout@v2 with: