Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TST: No pycryptodome #1050

Merged
merged 13 commits into from
Jul 3, 2022
Next Next commit
TST: No pycryptodome
MartinThoma committed Jul 3, 2022

Verified

This commit was signed with the committer’s verified signature.
MartinThoma Martin Thoma
commit 596e628531d28c5f86c1a4d47f8f19999666720d
6 changes: 5 additions & 1 deletion .github/workflows/github-ci.yaml
Original file line number Diff line number Diff line change
@@ -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"]
MartinThoma marked this conversation as resolved.
Show resolved Hide resolved

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 .