Fixes #841
@ -135,7 +135,7 @@ urllib3==2.5.0
venusian==3.1.1
waitress==3.0.2
wcwidth==0.2.13
webargs==8.0.0
webargs==8.7.0
webassets==2.0
webencodings==0.5.1
webob==1.8.9
@ -37,6 +37,6 @@ SQLAlchemy-Utils
stripe==2.6.0 # TODO: Figure out if we can update this
titlecase
unicodedata2
webargs==8.0.0 # TODO: Updating webargs causes an issue with parsing URLs, figure out if we can fix this
webargs
wrapt
zope.sqlalchemy==1.5 # TODO: Figure out if we can update this
@ -89,7 +89,7 @@ unicodedata2==16.0.0
urllib3==2.5.0
@ -46,7 +46,9 @@ def use_kwargs(
argmap.unknown = EXCLUDE
return pyramidparser.use_kwargs(argmap, location=location, **kwargs)
return pyramidparser.use_kwargs(
argmap, location=location, unknown=None, **kwargs
)
def ic_view_config(**kwargs: Any) -> Callable: