Skip to content

Commit b2345e4

Browse files
authored
fix: update pyca range (#506)
1 parent 352b0a2 commit b2345e4

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

decrypt_oracle/test/integration/test_i_decrypt_oracle.py

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def test_all_vectors(vector):
2525
decrypt_endpoint(),
2626
data=vector.ciphertext,
2727
headers={"Content-Type": "application/octet-stream", "Accept": "application/octet-stream"},
28+
timeout=120 # 2 minutes
2829
)
2930
assert response.status_code == 200
3031
assert response.content == vector.plaintext

decrypt_oracle/tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ basepython = python3
188188
deps =
189189
-rtest/requirements.txt
190190
{[testenv:generate-pipeline]deps}
191-
pyflakes
192-
pylint
191+
pyflakes==2.5.0
192+
pylint==2.15.0
193193
commands =
194194
pylint \
195195
--rcfile=src/pylintrc \

requirements.txt

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

0 commit comments

Comments
 (0)