[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/12: gnu: gunicorn: Update to 2.1.0.
From: |
guix-commits |
Subject: |
03/12: gnu: gunicorn: Update to 2.1.0. |
Date: |
Thu, 6 May 2021 13:16:04 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 4bdc52bc21d501c7d8e2b6d1d3951783288e0398
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Thu May 6 01:20:51 2021 +0200
gnu: gunicorn: Update to 2.1.0.
* gnu/packages/python-web.scm (gunicorn): Update to 2.1.0.
[arguments]: Ignore one test that cannot run in the build container.
[native-inputs]: Add PYTHON-GEVENT.
---
gnu/packages/python-web.scm | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 4d6d478..5897893 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4688,14 +4688,14 @@ event loop. It is implemented in Cython and uses libuv
under the hood.")
(define-public gunicorn
(package
(name "gunicorn")
- (version "20.0.4")
+ (version "20.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "gunicorn" version))
(sha256
(base32
- "09n6fc019bgrvph1s5h1lwhn2avcsprw6ncd203qhra3i8mvn10r"))))
+ "1s7670qw36x90bgmazmgib170i5gnpyb2ypxzlla7y0mpasniag0"))))
(outputs '("out" "doc"))
(build-system python-build-system)
(arguments
@@ -4713,7 +4713,11 @@ event loop. It is implemented in Cython and uses libuv
under the hood.")
(begin
(setenv "PYTHONPATH"
(string-append ".:" (getenv "PYTHONPATH")))
- (invoke "pytest" "-vv"))
+ (invoke "pytest" "-vv"
+ ;; Disable the geventlet tests because eventlet uses
+ ;; dnspython, which does not work in the build
+ ;; container due to lack of /etc/resolv.conf, etc.
+ "--ignore=tests/workers/test_geventlet.py"))
(format #t "test suite not run~%"))))
(add-after 'install 'install-doc
(lambda* (#:key outputs #:allow-other-keys)
@@ -4749,6 +4753,7 @@ event loop. It is implemented in Cython and uses libuv
under the hood.")
(native-inputs
`(("binutils" ,binutils) ;; for ctypes.util.find_library()
("python-aiohttp" ,python-aiohttp)
+ ("python-gevent" ,python-gevent)
("python-pytest" ,python-pytest)
("python-pytest-cov" ,python-pytest-cov)
("python-sphinx" ,python-sphinx)
- branch master updated (ce7b202 -> dd52cb9), guix-commits, 2021/05/06
- 01/12: gnu: gunicorn: Respect '--without-tests'., guix-commits, 2021/05/06
- 02/12: gnu: gunicorn: Remove unneeded runtime dependencies., guix-commits, 2021/05/06
- 03/12: gnu: gunicorn: Update to 2.1.0.,
guix-commits <=
- 06/12: gnu: python-django: Update to 3.2.2., guix-commits, 2021/05/06
- 05/12: gnu: Remove python-pykka., guix-commits, 2021/05/06
- 08/12: gnu: python-flake8: Do not use the 'bootstrap' pytest., guix-commits, 2021/05/06
- 07/12: gnu: python-django@2.2: Update to 2.2.22., guix-commits, 2021/05/06
- 12/12: gnu: python-hacking: Update to 4.1.0., guix-commits, 2021/05/06
- 04/12: gnu: python-dnspython: Update to 2.1.0., guix-commits, 2021/05/06
- 10/12: gnu: python-flake8: Update to 3.9.1., guix-commits, 2021/05/06
- 09/12: gnu: python-flake8: Do not delete and recreate check phase., guix-commits, 2021/05/06
- 11/12: gnu: python-hacking: Fix build failure., guix-commits, 2021/05/06