Skip to content

Commit 60c6abe

Browse files
author
EhteshamSid
committed
bump cryptography to 46.0.6 in all buildcmd test fixtures, fix linting
1 parent 6baf6cc commit 60c6abe

File tree

19 files changed

+22
-23
lines changed

19 files changed

+22
-23
lines changed

tests/integration/durable_integ_base.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
import json
2-
import os
32
import re
43
import shutil
54
import threading
65
import time
76
from pathlib import Path
8-
from subprocess import Popen, PIPE, STDOUT, TimeoutExpired
9-
from typing import Dict, Any, Optional, List
7+
from subprocess import PIPE, STDOUT, Popen
8+
from typing import Any, Dict, List, Optional
109
from unittest import TestCase
1110

1211
from tests.integration.local.invoke.invoke_integ_base import TIMEOUT
1312
from tests.testing_utils import (
14-
run_command,
15-
get_sam_command,
1613
get_build_command_list,
14+
get_sam_command,
15+
run_command,
1716
)
1817

1918

tests/integration/testdata/buildcmd/PyLayer/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# NOTE: Fixing to <1.20.3 as numpy1.20.3 started to use a new wheel naming convention (PEP 600)
44
numpy<1.20.3; python_version < '3.10'
55
numpy==1.26.4; python_version >= '3.10'
6-
cryptography==3.3.2
6+
cryptography==46.0.6

tests/integration/testdata/buildcmd/PyLayerMake/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# NOTE: Fixing to <1.20.3 as numpy1.20.3 started to use a new wheel naming convention (PEP 600)
44
numpy<1.20.3; python_version < '3.10'
55
numpy==1.26.4; python_version >= '3.10'
6-
cryptography==3.3.2
6+
cryptography==46.0.6

tests/integration/testdata/buildcmd/Python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
numpy<1.20.3; python_version <= '3.9'
55
numpy==2.1.3; python_version >= '3.10' and python_version < '3.14'
66
numpy==2.3.4; python_version >= '3.14'
7-
cryptography==3.3.2
7+
cryptography==46.0.6

tests/integration/testdata/buildcmd/PythonContainerEnvVars/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
numpy<1.20.3; python_version <= '3.9'
55
numpy==2.1.3; python_version >= '3.10' and python_version < '3.14'
66
numpy==2.3.4; python_version >= '3.14'
7-
cryptography==3.3.2
7+
cryptography==46.0.6

tests/integration/testdata/buildcmd/PythonImage/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
numpy<1.20.3; python_version < '3.10'
55
numpy==2.1.3; python_version >= '3.10' and python_version < '3.14'
66
numpy==2.3.4; python_version >= '3.14'
7-
cryptography==3.3.2
7+
cryptography==46.0.6

tests/integration/testdata/buildcmd/PythonImagesWithSharedCode/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
numpy<1.20.3; python_version < '3.10'
55
numpy==2.1.3; python_version >= '3.10' and python_version < '3.14'
66
numpy==2.3.4; python_version >= '3.14'
7-
cryptography==3.3.2
7+
cryptography==46.0.6

tests/integration/testdata/buildcmd/PythonPEP600/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ numpy==2.3.4; python_version >= '3.14'
77
greenlet==3.1.1; python_version < '3.14'
88
greenlet==3.2.4; python_version >= '3.14'
99
sqlalchemy==2.0.36
10-
cryptography==3.3.2
10+
cryptography==46.0.6

tests/integration/testdata/buildcmd/PythonParentPackages/src/fnone/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# NOTE: Fixing to <1.20.3 as numpy1.20.3 started to use a new wheel naming convention (PEP 600)
44
numpy<1.20.3; python_version <= '3.9'
55
numpy==2.1.3; python_version >= '3.10'
6-
cryptography==3.3.2
6+
cryptography==46.0.6

tests/integration/testdata/buildcmd/PythonParentPackages/src/fntwo/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# NOTE: Fixing to <1.20.3 as numpy1.20.3 started to use a new wheel naming convention (PEP 600)
44
numpy<1.20.3; python_version <= '3.9'
55
numpy==2.1.3; python_version >= '3.10'
6-
cryptography==3.3.2
6+
cryptography==46.0.6

0 commit comments

Comments
 (0)