Skip to content

Commit 14c287d

Browse files
Merge
2 parents 9131433 + a93ffe7 commit 14c287d

13 files changed

+362
-76
lines changed

.github/workflows/ci_decrypt-oracle.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
tests:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: actions/setup-python@v4
1616
with:
1717
# The oracle will run on a Python 3.9 Lamba
@@ -38,7 +38,7 @@ jobs:
3838
- flake8-tests
3939
- pylint-tests
4040
steps:
41-
- uses: actions/checkout@v3
41+
- uses: actions/checkout@v4
4242
- uses: actions/setup-python@v4
4343
with:
4444
python-version: 3.9

.github/workflows/ci_static-analysis.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- black-check
2828
- isort-check
2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
- uses: actions/setup-python@v4
3232
with:
3333
python-version: 3.8

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
- os: macos-latest
3838
architecture: x86
3939
steps:
40-
- uses: aws-actions/configure-aws-credentials@v1
40+
- uses: aws-actions/configure-aws-credentials@v4
4141
with:
4242
aws-access-key-id: ${{ secrets.INTEG_AWS_ACCESS_KEY_ID }}
4343
aws-secret-access-key: ${{ secrets.INTEG_AWS_SECRET_ACCESS_KEY }}
4444
aws-region: us-west-2
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v4
4646
- uses: actions/setup-python@v4
4747
with:
4848
python-version: ${{ matrix.python }}
@@ -69,7 +69,7 @@ jobs:
6969
- flake8-tests
7070
- pylint-tests
7171
steps:
72-
- uses: actions/checkout@v3
72+
- uses: actions/checkout@v4
7373
- uses: actions/setup-python@v4
7474
with:
7575
python-version: 3.9

.github/workflows/ci_tests.yaml

+2-22
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
run: |
8080
git config --global core.longpaths true
8181
82-
- uses: actions/checkout@v3
82+
- uses: actions/checkout@v4
8383
- uses: actions/setup-python@v4
8484
with:
8585
python-version: ${{ matrix.python }}
@@ -91,26 +91,6 @@ jobs:
9191
env:
9292
TOXENV: ${{ matrix.category }}${{ matrix.optional_mpl_dependency }}
9393
run: tox -- -vv
94-
upstream-py37:
95-
runs-on: ubuntu-latest
96-
strategy:
97-
fail-fast: true
98-
matrix:
99-
category:
100-
- nocmk
101-
- test-upstream-requirements-py37
102-
steps:
103-
- uses: actions/checkout@v3
104-
- uses: actions/setup-python@v4
105-
with:
106-
python-version: 3.7
107-
- run: |
108-
python -m pip install --upgrade pip
109-
pip install --upgrade -r dev_requirements/ci-requirements.txt
110-
- name: run test
111-
env:
112-
TOXENV: ${{ matrix.category }}
113-
run: tox -- -vv
11494
upstream-py311:
11595
runs-on: ubuntu-latest
11696
strategy:
@@ -120,7 +100,7 @@ jobs:
120100
- nocmk
121101
- test-upstream-requirements-py311
122102
steps:
123-
- uses: actions/checkout@v3
103+
- uses: actions/checkout@v4
124104
- uses: actions/setup-python@v4
125105
with:
126106
python-version: "3.11"

.github/workflows/repo-sync.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
environment: repo-sync
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- uses: repo-sync/github-sync@v2
1414
name: Sync repo to branch
1515
with:

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Required Prerequisites
3535
======================
3636

3737
* Python 3.7+
38-
* cryptography >= 2.5.0
38+
* cryptography >= 3.4.6
3939
* boto3 >= 1.10.0
4040
* attrs
4141

0 commit comments

Comments
 (0)