From fb138c827bf1e717697adeb6d7265517f4b54a9d Mon Sep 17 00:00:00 2001 From: James Addison Date: Mon, 10 Oct 2022 20:47:57 +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 | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/unittests.yaml b/.github/workflows/unittests.yaml index 2bcbc13ae..92a9720a8 100644 --- a/.github/workflows/unittests.yaml +++ b/.github/workflows/unittests.yaml @@ -12,15 +12,8 @@ jobs: test: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11.0-rc.1"] - exclude: - - os: macos-latest - python-version: "3.10" - - os: macos-latest - python-version: "3.11.0-rc.1" - - os: windows-latest - python-version: "3.11.0-rc.1" + os: [macos-latest] + python-version: ["3.10.0", "3.10.3", "3.10.7"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3