Skip to content

Commit

Permalink
Make non-usage of pycryptodome explicit
Browse files Browse the repository at this point in the history
Co-authored-by: Matthew Peveler <[email protected]>
  • Loading branch information
MartinThoma and MasterOdin committed Jul 3, 2022
1 parent 46fefa6 commit fefa6fb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/github-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 .
Expand Down

0 comments on commit fefa6fb

Please sign in to comment.