Skip to content

Commit

Permalink
👷 set validate_assignment config back to True (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
ff137 authored Apr 4, 2024
1 parent aea6633 commit f55c73f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aries_cloudcontroller/util/pydantic_model_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
DEFAULT_PYDANTIC_MODEL_CONFIG: ConfigDict = {
"defer_build": True,
"populate_by_name": True,
"validate_assignment": False,
"validate_assignment": True,
}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aiohttp>=3.9.2,<4.0
pydantic>=2.4,<3.0
pydantic>=2.6,<3.0
python-dateutil>=2
typing-extensions>=4,<5.0
urllib3>=2.1,<3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def parse_requirements(filename: str):
if __name__ == "__main__":
setup(
name=PACKAGE_NAME,
version="0.11.0-rev1",
version="0.11.0-rev2",
description="A simple python client for controlling an ACA-Py agent",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit f55c73f

Please sign in to comment.