diff options
| author | Konrad Weihmann <kweihmann@outlook.com> | 2020-06-10 21:49:09 +0200 |
|---|---|---|
| committer | Claudiu Popa <pcmanticore@gmail.com> | 2020-12-24 14:13:21 +0100 |
| commit | 744a9a802543a46ff4c9e0727d8ea4fc83c80691 (patch) | |
| tree | 38ed70b672b2718ad62a4c874433e20a698b6c19 /astroid | |
| parent | 922820e47595d1335fdafb571ff4e87f5970a22b (diff) | |
| download | astroid-git-744a9a802543a46ff4c9e0727d8ea4fc83c80691.tar.gz | |
Allow lazy-object-proxy >= 1.5.0
by allowing every version >= 1.4.0
Fixes #800
Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
Diffstat (limited to 'astroid')
| -rw-r--r-- | astroid/__pkginfo__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py index 56e93e14..57352f9d 100644 --- a/astroid/__pkginfo__.py +++ b/astroid/__pkginfo__.py @@ -26,7 +26,7 @@ numversion = tuple(int(elem) for elem in version.split(".") if elem.isdigit()) extras_require = {} install_requires = [ - "lazy_object_proxy==1.4.*", + "lazy_object_proxy>=1.4.0", "six~=1.12", "wrapt>=1.11,<1.13", 'typed-ast>=1.4.0,<1.5;implementation_name== "cpython" and python_version<"3.8"', |
