Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
Date: Sun, 30 May 2021 15:53:38
Message-Id: 1622389997.09a0823da05e832c53bac65aaf7f56c0d48ae39f.andrewammerlaan@gentoo
1 commit: 09a0823da05e832c53bac65aaf7f56c0d48ae39f
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 30 15:50:19 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Sun May 30 15:53:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=09a0823d
7
8 dev-python/sanic: drop websockets restriction
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
12
13 dev-python/sanic/sanic-21.3.4.ebuild | 3 +--
14 1 file changed, 1 insertion(+), 2 deletions(-)
15
16 diff --git a/dev-python/sanic/sanic-21.3.4.ebuild b/dev-python/sanic/sanic-21.3.4.ebuild
17 index bc79bf25f..fc0e5353b 100644
18 --- a/dev-python/sanic/sanic-21.3.4.ebuild
19 +++ b/dev-python/sanic/sanic-21.3.4.ebuild
20 @@ -28,7 +28,6 @@ RDEPEND="
21 dev-python/ujson[${PYTHON_USEDEP}]
22 dev-python/uvloop[${PYTHON_USEDEP}]
23 >=dev-python/websockets-8.1[${PYTHON_USEDEP}]
24 - <dev-python/websockets-9.0[${PYTHON_USEDEP}]
25 "
26 DEPEND="
27 ${RDEPEND}
28 @@ -53,5 +52,5 @@ distutils_enable_sphinx docs \
29 www-servers/gunicorn
30
31 python_test() {
32 - pytest -vv --deselect tests/test_unix_socket.py::test_zero_downtime || die
33 + pytest -vv --deselect tests/test_unix_socket.py::test_zero_downtime tests/test_keep_alive_timeout.py::test_keep_alive_client_timeout || die
34 }