diff --git a/ChangeLog b/ChangeLog index aecd2e238..f506d6617 100644 --- a/ChangeLog +++ b/ChangeLog @@ -30,6 +30,9 @@ Release date: TBA Closes #1737 +* Bumped minimum requirement of ``wrapt`` to 1.14 on Python 3.11. + + What's New in astroid 2.12.2? ============================= Release date: 2022-07-12 diff --git a/pyproject.toml b/pyproject.toml index ae1d97446..cc724ed41 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,8 @@ classifiers = [ requires-python = ">=3.7.2" dependencies = [ "lazy_object_proxy>=1.4.0", - "wrapt>=1.11,<2", + "wrapt>=1.14,<2;python_version>='3.11'", + "wrapt>=1.11,<2;python_version<'3.11'", "typed-ast>=1.4.0,<2.0;implementation_name=='cpython' and python_version<'3.8'", "typing-extensions>=3.10;python_version<'3.10'", ]