Skip to content

Commit f55c73f

Browse files
authored
👷 set validate_assignment config back to True (#162)
1 parent aea6633 commit f55c73f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

aries_cloudcontroller/util/pydantic_model_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
DEFAULT_PYDANTIC_MODEL_CONFIG: ConfigDict = {
44
"defer_build": True,
55
"populate_by_name": True,
6-
"validate_assignment": False,
6+
"validate_assignment": True,
77
}

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
aiohttp>=3.9.2,<4.0
2-
pydantic>=2.4,<3.0
2+
pydantic>=2.6,<3.0
33
python-dateutil>=2
44
typing-extensions>=4,<5.0
55
urllib3>=2.1,<3

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def parse_requirements(filename: str):
1919
if __name__ == "__main__":
2020
setup(
2121
name=PACKAGE_NAME,
22-
version="0.11.0-rev1",
22+
version="0.11.0-rev2",
2323
description="A simple python client for controlling an ACA-Py agent",
2424
long_description=long_description,
2525
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)