Skip to content

Commit ac80d97

Browse files
Update dependency on cryptography (2.x) (#308)
* Update dependency on cryptography Changes in 2.0.x depend on behavior introduced in cryptography 2.5 * Hardcode python3.8 for static analysis tests in github actions Python3.9 and pylint do not play nicely
1 parent 9afe87e commit ac80d97

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci_decrypt-oracle.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/checkout@v2
4242
- uses: actions/setup-python@v1
4343
with:
44-
python-version: 3.x
44+
python-version: 3.8
4545
- run: |
4646
python -m pip install --upgrade pip
4747
pip install --upgrade -r ci-requirements.txt

.github/workflows/ci_static-analysis.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v2
3131
- uses: actions/setup-python@v1
3232
with:
33-
python-version: 3.x
33+
python-version: 3.8
3434
- run: |
3535
python -m pip install --upgrade pip
3636
pip install --upgrade -r ci-requirements.txt

.github/workflows/ci_test-vector-handler.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
- uses: actions/checkout@v2
7777
- uses: actions/setup-python@v1
7878
with:
79-
python-version: 3.x
79+
python-version: 3.8
8080
- run: |
8181
python -m pip install --upgrade pip
8282
pip install --upgrade -r ci-requirements.txt

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Required Prerequisites
3939
======================
4040

4141
* Python 2.7+ or 3.4+
42-
* cryptography >= 1.8.1
42+
* cryptography >= 2.5.0
4343
* boto3
4444
* attrs
4545

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
boto3>=1.4.4
2-
cryptography>=1.8.1
2+
cryptography>=2.5.0
33
attrs>=17.4.0
44
wrapt>=1.10.11

0 commit comments

Comments
 (0)