aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-astroid/0001-Relax-upper-bound-on-wrapt.patch
blob: 08da78fb9755f5e3755b8faaa3a267f68b933d0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
From 597c044378bdcac0e02205e151f180f85a40a729 Mon Sep 17 00:00:00 2001
From: Michael <michael-k@users.noreply.github.com>
Date: Thu, 27 Feb 2020 08:33:48 +0000
Subject: [PATCH] Relax upper bound on `wrapt` (#756)

Closes PyCQA/astroid#755
---
 ChangeLog              | 4 ++++
 astroid/__pkginfo__.py | 2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c42d122e..1ca51f73 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -123,6 +123,10 @@ Release Date: TBA
   ``Arguments.type_comment_posonlyargs`` and
   ``Arguments.type_comment_kwonlyargs`` attributes respectively.
 
+* Relax upper bound on `wrapt`
+
+  Close #755
+
 What's New in astroid 2.3.2?
 ============================
 Release Date: TBA
diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py
index 4647a6eb..d7b1d544 100644
--- a/astroid/__pkginfo__.py
+++ b/astroid/__pkginfo__.py
@@ -24,7 +24,7 @@
 install_requires = [
     "lazy_object_proxy==1.4.*",
     "six~=1.12",
-    "wrapt==1.11.*",
+    "wrapt~=1.11",
     'typed-ast>=1.4.0,<1.5;implementation_name== "cpython" and python_version<"3.8"',
 ]