From fefa6fbc1c80e7e9d4367606bb1db8806fe0a8b5 Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Sun, 3 Jul 2022 19:50:51 +0200 Subject: [PATCH] Make non-usage of pycryptodome explicit Co-authored-by: Matthew Peveler --- .github/workflows/github-ci.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-ci.yaml b/.github/workflows/github-ci.yaml index 6bbc16b57..734b8113b 100644 --- a/.github/workflows/github-ci.yaml +++ b/.github/workflows/github-ci.yaml @@ -21,8 +21,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.10.3"] - + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + use-cryptodome: [""] + include: + - python-version: "3.10" + use-cryptodome: "false" steps: - name: Checkout Code uses: actions/checkout@v3 @@ -41,7 +44,7 @@ jobs: - name: Remove cryptodome run: | pip uninstall pycryptodome -y - if: matrix.python-version == '3.10.3' + if: matrix.use-cryptodome == false - name: Install PyPDF2 run: | pip install .