diff --git a/docs/strcs/changelog.rst b/docs/strcs/changelog.rst index 239d0d9..a5a9374 100644 --- a/docs/strcs/changelog.rst +++ b/docs/strcs/changelog.rst @@ -3,6 +3,13 @@ Changelog --------- +.. _release-0.4.1: + +0.4.1 - TBD + + * Added a dependency constraint to cattrs. Seems that newer version of cattrs + breaks this library + .. _release-0.4.0: 0.4.0 - 15 October 2023 diff --git a/pyproject.toml b/pyproject.toml index fd4f130..e53bc0d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ authors = [ ] dependencies = [ "attrs>=22.2.0", - "cattrs>=22.2.0", + "cattrs>=22.2.0,<=23.2.3", ] [project.optional-dependencies] @@ -22,7 +22,7 @@ tests = [ "noseOfYeti[black]==2.4.8", "pytest==8.0.1", "attrs>=23.1.0", - "cattrs>=23.1.2", + "cattrs>=23.1.2,<=23.2.3", ] [project.urls]