1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/testing/py3-astroid/0001-Relax-upper-bound-on-wrapt.patch

38 lines
1.1 KiB
Diff

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"',
]