guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit ad12355dc5fbed5b719035bbcf12feb27d52d2fc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Sep 16 09:02:36 2025 +0100
gnu: python-requests: Update to 2.32.5.
* gnu/packages/python-web.scm (python-requests): Update to 2.32.5.
[native-inputs]: Remove python-pip and python-wheel.
Change-Id: I46a990efba2015a7c54d8dfad0c916635fa521ab
---
gnu/packages/python-web.scm | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index d1460a51ce..80281682da 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5198,13 +5198,13 @@ APIs.")
(define-public python-requests
(package
(name "python-requests")
- (version "2.31.0")
+ (version "2.32.5")
(source (origin
(method url-fetch)
(uri (pypi-uri "requests" version))
(sha256
(base32
- "1qfidaynsrci4wymrw3srz8v1zy7xxpcna8sxpm91mwqixsmlb4l"))))
+ "1kypqz701x9s7j4shm1pdnzy4pzx9lmvhwgan0yqa071asn0pfnv"))))
(build-system pyproject-build-system)
(arguments
(list #:test-flags
@@ -5221,11 +5221,9 @@ APIs.")
python-idna
python-urllib3))
(native-inputs
- (list python-pip
- python-pytest
+ (list python-pytest
python-pytest-mock
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://requests.readthedocs.io/")
(synopsis "Python HTTP library")
(description