From a92418069b9282206a38edb694388703fb6b5922 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E7=8E=BA=E6=BA=90?= Date: Fri, 2 Jun 2023 04:04:30 +0000 Subject: [PATCH] Replace python3-crypto to python3-cryptography to fix BuildRequires problem MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 王玺源 (cherry picked from commit e6f0231d1fe8a6fa57428cee9f5b6eb8a8858df8) --- python-flask-restful.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/python-flask-restful.spec b/python-flask-restful.spec index c5d62b3..f3e2063 100644 --- a/python-flask-restful.spec +++ b/python-flask-restful.spec @@ -1,6 +1,6 @@ Name: python-flask-restful Version: 0.3.7 -Release: 1 +Release: 2 Summary: Framework for creating REST APIs License: BSD URL: https://www.github.com/flask-restful/flask-restful/ @@ -8,7 +8,7 @@ Source0: https://github.com/flask-restful/flask-restful/archive/%{version BuildArch: noarch BuildRequires: python3-setuptools python3-blinker -BuildRequires: python3-flask python3-six python3-aniso8601 python3-pytz python3-devel python3-crypto +BuildRequires: python3-flask python3-six python3-aniso8601 python3-pytz python3-devel python3-cryptography %description Flask-RESTful provides the building blocks for creating a REST API. @@ -42,6 +42,9 @@ rm -rf docs/_themes/.gitignore %{python3_sitelib}/* %changelog +* Fri Jun 02 2023 wangxiyuan - 0.3.7-2 +- Replace python3-crypto to python3-cryptography to fix BuildRequires problem. + * Fri Feb 11 2022 wangxiyuan - 0.3.7-1 - Upgrade to 0.3.7 and Remove test part due to the missing of nose library. -- Gitee