We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7029219 commit 8066b14Copy full SHA for 8066b14
requirements/base.txt
@@ -1,5 +1,5 @@
1
boto3>=1.34.0,<2.0.0
2
-jsonschema<5,>=4.25
+jsonschema<5,>=4.23
3
typing_extensions>=4.4 # 3.8 doesn't have Required, TypeGuard and ParamSpec
4
5
# resource validation & schema generation
samtranslator/model/sam_resources.py
@@ -44,7 +44,7 @@
44
aws_serverless_function,
45
aws_serverless_graphqlapi,
46
)
47
-except Exception:
+except RuntimeError: # Pydantic fails when initializing the model classes with a RuntimeError in 3.14
48
aws_serverless_capacity_provider = cast(ModuleType, None)
49
aws_serverless_function = cast(ModuleType, None)
50
aws_serverless_graphqlapi = cast(ModuleType, None)
0 commit comments