!22 Remove buildrequires python3-contextlib

From: @cherry530 
Reviewed-by: @caodongxia 
Signed-off-by: @caodongxia
This commit is contained in:
openeuler-ci-bot 2023-07-31 03:39:54 +00:00 committed by Gitee
commit 28b6f5c692
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 29 additions and 2 deletions

View File

@ -1,14 +1,16 @@
Name: python-pytest-shutil Name: python-pytest-shutil
Version: 1.7.0 Version: 1.7.0
Release: 2 Release: 3
Summary: A goodie-bag of unix shell and environment tools for py.test Summary: A goodie-bag of unix shell and environment tools for py.test
License: MIT License: MIT
URL: https://pypi.python.org/pypi/pytest-shutil URL: https://pypi.python.org/pypi/pytest-shutil
Source0: https://files.pythonhosted.org/packages/f7/fa/c1f7bfb61674f69fb2694bda0ef475a6b8b915a5c36105648dd58a6f200a/pytest-shutil-%{version}.tar.gz Source0: https://files.pythonhosted.org/packages/f7/fa/c1f7bfb61674f69fb2694bda0ef475a6b8b915a5c36105648dd58a6f200a/pytest-shutil-%{version}.tar.gz
Patch0: remove-require-contextlib2-on-python3.patch
BuildArch: noarch BuildArch: noarch
BuildRequires: python3-contextlib2 python3-devel python3-execnet python3-mock python3-wheel BuildRequires: python3-devel python3-execnet python3-mock python3-wheel
BuildRequires: python3-path python3-pytest python3-pip python3-setuptools_git python3-termcolor BuildRequires: python3-path python3-pytest python3-pip python3-setuptools_git python3-termcolor
%description %description
@ -45,6 +47,9 @@ pytest -k "not test_pretty_formatter"
%{python3_sitelib}/* %{python3_sitelib}/*
%changelog %changelog
* Mon Jul 31 2023 xu_ping <707078654@qq.com> - 1.7.0-3
- remove buildrequires python3-contextlib2.
* Fri May 05 2023 yaoxin <yao_xin001@hoperun.com> - 1.7.0-2 * Fri May 05 2023 yaoxin <yao_xin001@hoperun.com> - 1.7.0-2
- Fix compilation errors due to python-termcolor update to 2.3.0 - Fix compilation errors due to python-termcolor update to 2.3.0

View File

@ -0,0 +1,22 @@
From 2d6709e2fc7fba1e0d61e8dad03fa68bf19a9b0f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
Date: Sun, 18 Aug 2019 10:46:37 +0200
Subject: [PATCH] pytest-shutil: Only require contextlib2 on Python 2
---
pytest-shutil/setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pytest-shutil/setup.py b/pytest-shutil/setup.py
index 70cc354..57f710d 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@
install_requires = ['six',
'execnet',
- 'contextlib2',
+ 'contextlib2;python_version<"3"',
'pytest',
'path.py',
'mock',