From 3cf5d491d88c5c0178c9f570360221f0c3b02dc6 Mon Sep 17 00:00:00 2001 From: Teemu Rytilahti Date: Sat, 21 Oct 2023 05:20:19 +0200 Subject: [PATCH] Cleanup excludes, as everything seem to run smoothly now --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f43745246..642784e01 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,14 +61,11 @@ jobs: matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.8"] os: [ubuntu-latest, macos-latest, windows-latest] - # test pypy3 only on ubuntu as cryptography requires rust compilation - # which slows the pipeline and was not currently working on macos -# commented out for testing if these are still necessary +# Exclude example, in case needed again in the future: # exclude: # - python-version: pypy3.8 # os: macos-latest -# - python-version: pypy3.8 -# os: windows-latest + steps: - uses: "actions/checkout@v3"