From 549008eebdb5e7bfd4d4d07a3704c86870902eef Mon Sep 17 00:00:00 2001 From: Myst <1592048+LeMyst@users.noreply.github.com> Date: Wed, 1 Jun 2022 17:14:37 +0200 Subject: [PATCH] Disable pytest on 3.11-dev Solved in https://github.com/python/cpython/pull/93359 --- .github/workflows/python-pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-pytest.yml b/.github/workflows/python-pytest.yml index 51cdb69a..04e9dfcb 100644 --- a/.github/workflows/python-pytest.yml +++ b/.github/workflows/python-pytest.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11-dev' ] + python-version: [ '3.7', '3.8', '3.9', '3.10' ] # '3.11-dev' steps: - uses: actions/checkout@v3