Skip to content

Commit 71aa131

Browse files
author
EhteshamSid
committed
revert cryptography bump in buildcmd test fixtures
Per review feedback, the cryptography==3.3.2 pins in testdata/buildcmd are intentional - newer cryptography requires a more recent glibc that is not available in Lambda build images. Kept the bump in durable_integ_base.py and regression_deploy_base.py since those run on the CI host, not inside Lambda build images.
1 parent 324cec5 commit 71aa131

17 files changed

Lines changed: 17 additions & 17 deletions

File tree

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==46.0.6
6+
cryptography==3.3.2

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==46.0.6
6+
cryptography==3.3.2

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==46.0.6
7+
cryptography==3.3.2

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==46.0.6
7+
cryptography==3.3.2

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==46.0.6
7+
cryptography==3.3.2

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==46.0.6
7+
cryptography==3.3.2

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==46.0.6
10+
cryptography==3.3.2

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==46.0.6
6+
cryptography==3.3.2

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==46.0.6
6+
cryptography==3.3.2

tests/integration/testdata/buildcmd/PythonPyProject/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ dependencies = [
55
"numpy==2.0.0; python_version <= '3.9'",
66
"numpy==2.1.3; python_version >= '3.10' and python_version < '3.14'",
77
"numpy==2.3.4; python_version >= '3.14'",
8-
"cryptography==46.0.6",
8+
"cryptography==3.3.2",
99
]

0 commit comments

Comments
 (0)