Skip to content

Commit

Permalink
Update dependency on cryptography (2.x) (#308)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
farleyb-amazon committed Oct 29, 2020
1 parent 9afe87e commit ac80d97
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_decrypt-oracle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.x
python-version: 3.8
- run: |
python -m pip install --upgrade pip
pip install --upgrade -r ci-requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_static-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.x
python-version: 3.8
- run: |
python -m pip install --upgrade pip
pip install --upgrade -r ci-requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_test-vector-handler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.x
python-version: 3.8
- run: |
python -m pip install --upgrade pip
pip install --upgrade -r ci-requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Required Prerequisites
======================

* Python 2.7+ or 3.4+
* cryptography >= 1.8.1
* cryptography >= 2.5.0
* boto3
* attrs

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
boto3>=1.4.4
cryptography>=1.8.1
cryptography>=2.5.0
attrs>=17.4.0
wrapt>=1.10.11

0 comments on commit ac80d97

Please sign in to comment.