summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-08-22 19:25:55 +0200
committerGitHub <noreply@github.com>2022-08-22 19:25:55 +0200
commitea26a15b022a236072c4745e15731e6e37491319 (patch)
tree46ad54138611dc2b647c344a0371697d12074b33 /pyproject.toml
parentd5a3765d7d442017b803b6ca7efa5da28d1c22ce (diff)
downloadastroid-git-ea26a15b022a236072c4745e15731e6e37491319.tar.gz
Bump ``wrapt`` to ``1.14`` (#1745)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index ae1d9744..cc724ed4 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'",
]