From eaed1ba52ebd175a043c92680345b09d1c31e57d Mon Sep 17 00:00:00 2001 From: James Addison Date: Mon, 10 Oct 2022 20:16:11 +0100 Subject: [PATCH] Attempt to narrow down on the version of Python 3.10.x where unit test failure noted at https://github.com/hhursev/recipe-scrapers/pull/628#discussion_r991564181 bug could have been introduced Attempted reading and comparing the 3.10.x and 3.11.x changelogs since the failure affects both lineages of Python, but that hasn't produced any definitive answers yet --- .github/workflows/unittests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unittests.yaml b/.github/workflows/unittests.yaml index 3d5e2f231..92a9720a8 100644 --- a/.github/workflows/unittests.yaml +++ b/.github/workflows/unittests.yaml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [macos-latest] - python-version: ["3.11.0-rc.1"] + python-version: ["3.10.0", "3.10.3", "3.10.7"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3