From 596e628531d28c5f86c1a4d47f8f19999666720d Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Sun, 3 Jul 2022 17:21:26 +0200 Subject: [PATCH] TST: No pycryptodome --- .github/workflows/github-ci.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-ci.yaml b/.github/workflows/github-ci.yaml index 576c64e6f..6bbc16b57 100644 --- a/.github/workflows/github-ci.yaml +++ b/.github/workflows/github-ci.yaml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.10.3"] steps: - name: Checkout Code @@ -38,6 +38,10 @@ jobs: - name: Install requirements (Python 3) run: | pip install -r requirements/ci.txt + - name: Remove cryptodome + run: | + pip uninstall pycryptodome -y + if: matrix.python-version == '3.10.3' - name: Install PyPDF2 run: | pip install .