!33 Package upgrade
From: @houyingchao Reviewed-by: @myeuler Signed-off-by: @myeuler
This commit is contained in:
commit
5aafd5f6dc
BIN
0.3.8.tar.gz
BIN
0.3.8.tar.gz
Binary file not shown.
@ -1,41 +0,0 @@
|
|||||||
From 7437d53e12b08099586546f999fbdf3cf080330b Mon Sep 17 00:00:00 2001
|
|
||||||
From: Anthony Sottile <asottile@umich.edu>
|
|
||||||
Date: Fri, 7 Feb 2020 09:59:23 -0800
|
|
||||||
Subject: [PATCH] Fix testsuite for werkzeug 1.x
|
|
||||||
|
|
||||||
---
|
|
||||||
tests/test_api.py | 4 +++-
|
|
||||||
tests/test_reqparse.py | 4 ++--
|
|
||||||
2 files changed, 5 insertions(+), 3 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/tests/test_api.py b/tests/test_api.py
|
|
||||||
index f7f8e661..6795d362 100644
|
|
||||||
--- a/tests/test_api.py
|
|
||||||
+++ b/tests/test_api.py
|
|
||||||
@@ -445,7 +445,9 @@ def test_handle_non_api_error(self):
|
|
||||||
|
|
||||||
resp = app.get("/foo")
|
|
||||||
self.assertEquals(resp.status_code, 404)
|
|
||||||
- self.assertEquals('text/html', resp.headers['Content-Type'])
|
|
||||||
+ # in newer versions of werkzeug this is `text/html; charset=utf8`
|
|
||||||
+ content_type, _, _ = resp.headers['Content-Type'].partition(';')
|
|
||||||
+ self.assertEquals('text/html', content_type)
|
|
||||||
|
|
||||||
def test_non_api_error_404_catchall(self):
|
|
||||||
app = Flask(__name__)
|
|
||||||
diff --git a/tests/test_reqparse.py b/tests/test_reqparse.py
|
|
||||||
index 2f1fbedf..9776f17c 100644
|
|
||||||
--- a/tests/test_reqparse.py
|
|
||||||
+++ b/tests/test_reqparse.py
|
|
||||||
@@ -2,9 +2,9 @@
|
|
||||||
import unittest
|
|
||||||
from mock import Mock, patch
|
|
||||||
from flask import Flask
|
|
||||||
-from werkzeug import exceptions, MultiDict
|
|
||||||
+from werkzeug import exceptions
|
|
||||||
from werkzeug.wrappers import Request
|
|
||||||
-from werkzeug.datastructures import FileStorage
|
|
||||||
+from werkzeug.datastructures import FileStorage, MultiDict
|
|
||||||
from flask_restful.reqparse import Argument, RequestParser, Namespace
|
|
||||||
import six
|
|
||||||
import decimal
|
|
||||||
@ -1,12 +1,10 @@
|
|||||||
Name: python-flask-restful
|
Name: python-flask-restful
|
||||||
Version: 0.3.8
|
Version: 0.3.9
|
||||||
Release: 4
|
Release: 1
|
||||||
Summary: Framework for creating REST APIs
|
Summary: Framework for creating REST APIs
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
URL: https://www.github.com/flask-restful/flask-restful/
|
URL: https://www.github.com/flask-restful/flask-restful/
|
||||||
Source0: https://github.com/flask-restful/flask-restful/archive/%{version}.tar.gz
|
Source0: https://github.com/flask-restful/flask-restful/archive/refs/tags/v0.3.9.tar.gz
|
||||||
|
|
||||||
Patch6000: backport-Fix-testsuite-for-werkzeug-1.x.patch
|
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: git gcc python3-pytz python3-setuptools python3-mock python3-blinker
|
BuildRequires: git gcc python3-pytz python3-setuptools python3-mock python3-blinker
|
||||||
@ -43,6 +41,9 @@ rm -rf docs/_themes/.gitignore
|
|||||||
%{python3_sitelib}/*
|
%{python3_sitelib}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jun 24 2022 houyingchao <houyingchao@h-partners.com> - 0.3.9-1
|
||||||
|
- Upgrade to 0.3.9
|
||||||
|
|
||||||
* Fri Jun 17 2022 liukuo <liukuo@kylinos.cn> - 0.3.8-4
|
* Fri Jun 17 2022 liukuo <liukuo@kylinos.cn> - 0.3.8-4
|
||||||
- License compliance rectification
|
- License compliance rectification
|
||||||
|
|
||||||
|
|||||||
BIN
v0.3.9.tar.gz
Normal file
BIN
v0.3.9.tar.gz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user