summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael <michael-k@users.noreply.github.com>2020-02-27 08:33:48 +0000
committerGitHub <noreply@github.com>2020-02-27 09:33:48 +0100
commit597c044378bdcac0e02205e151f180f85a40a729 (patch)
treeff6deefa9bbca3c62e5a3d180e4523c5869a4de9
parente821c795cff915c5e9737c65b1c5c46e744aaa8c (diff)
downloadastroid-git-597c044378bdcac0e02205e151f180f85a40a729.tar.gz
Relax upper bound on `wrapt` (#756)
Closes PyCQA/astroid#755
-rw-r--r--ChangeLog4
-rw-r--r--astroid/__pkginfo__.py2
-rw-r--r--tox.ini2
3 files changed, 6 insertions, 2 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 @@ extras_require = {}
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"',
]
diff --git a/tox.ini b/tox.ini
index 0b55bb6b..3ec33526 100644
--- a/tox.ini
+++ b/tox.ini
@@ -25,7 +25,7 @@ deps =
python-dateutil
pypy: singledispatch
six~=1.12
- wrapt==1.11.*
+ wrapt~=1.11
coverage<5
setenv =