summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Sautier <sbraz@gentoo.org>2020-09-23 13:23:09 +0200
committerLouis Sautier <sbraz@gentoo.org>2020-09-23 13:29:52 +0200
commit54a61e3f1ecd9a83cb4603b23d6bcb1a11f9051b (patch)
tree2b851951dda88ea1d417baa7df065923223ba960 /dev-python/flask-api/files
parentapp-crypt/acme-sh: drop old version (diff)
downloadgentoo-54a61e3f1ecd9a83cb4603b23d6bcb1a11f9051b.tar.gz
gentoo-54a61e3f1ecd9a83cb4603b23d6bcb1a11f9051b.tar.bz2
gentoo-54a61e3f1ecd9a83cb4603b23d6bcb1a11f9051b.zip
dev-python/flask-api: add PyPy3 and Python 3.9 support, fix deps
Also update HOMEPAGE. Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Louis Sautier <sbraz@gentoo.org>
Diffstat (limited to 'dev-python/flask-api/files')
-rw-r--r--dev-python/flask-api/files/flask-api-2.0-fix-pypy-tests.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/dev-python/flask-api/files/flask-api-2.0-fix-pypy-tests.patch b/dev-python/flask-api/files/flask-api-2.0-fix-pypy-tests.patch
new file mode 100644
index 000000000000..4d30691b60d3
--- /dev/null
+++ b/dev-python/flask-api/files/flask-api-2.0-fix-pypy-tests.patch
@@ -0,0 +1,22 @@
+commit beb6a364de93a429398a9491e16f60a7aa82f51d
+Author: Louis Sautier <sautier.louis@gmail.com>
+Date: Tue Sep 22 00:46:38 2020 +0200
+
+ Fix tests with PyPy, remove unused Python2-related code
+
+diff --git a/flask_api/tests/test_parsers.py b/flask_api/tests/test_parsers.py
+index 90a6b83..b7968f6 100644
+--- a/flask_api/tests/test_parsers.py
++++ b/flask_api/tests/test_parsers.py
+@@ -36,9 +36,9 @@ class ParserTests(unittest.TestCase):
+ with self.assertRaises(exceptions.ParseError) as context:
+ parser.parse(stream, mediatypes.MediaType('application/json'))
+ detail = str(context.exception)
+- expected_py2 = 'JSON parse error - Expecting property name: line 1 column 1 (char 1)'
++ expected_pypy = 'JSON parse error - Key name must be string at char: line 1 column 2 (char 1)'
+ expected_py3 = 'JSON parse error - Expecting property name enclosed in double quotes: line 1 column 2 (char 1)'
+- self.assertIn(detail, (expected_py2, expected_py3))
++ self.assertIn(detail, (expected_pypy, expected_py3))
+
+ def test_invalid_multipart(self):
+ parser = parsers.MultiPartParser()