* [bug#71806] [PATCH python-team] gnu: python-requests-toolbelt: Update to 1.0.0.
@ 2024-06-27 16:20 Felix Gruber
2024-07-01 6:02 ` jgart via Guix-patches via
0 siblings, 1 reply; 8+ messages in thread
From: Felix Gruber @ 2024-06-27 16:20 UTC (permalink / raw)
To: 71806
Cc: Felix Gruber, Lars-Dominik Braun, Marius Bakke, Munyoki Kilyungi,
Sharlatan Hellseher, Tanguy Le Carrour, jgart
* gnu/packages/python-web.scm (python-requests-toolbelt): Update to 1.0.0.
[arguments]: Delete tests that are incompatible with urllib3 >= 2.0.
[native-inputs]: Remove python-mock; add python-pyopenssl and python-trustme.
Change-Id: I349bd9cef34cdbf7a51612e8b9d5dac59101d1bd
---
gnu/packages/python-web.scm | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index e8ead0ef12..0c0c433c5d 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -49,7 +49,7 @@
;;; Copyright © 2021 Alice Brenon <alice.brenon@ens-lyon.fr>
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-;;; Copyright © 2022, 2023 Felix Gruber <felgru@posteo.net>
+;;; Copyright © 2022–2024 Felix Gruber <felgru@posteo.net>
;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
;;; Copyright © 2022 Luis Henrique Gomes Higino <luishenriquegh2701@gmail.com>
@@ -3761,13 +3761,13 @@ (define-public python-requests-mock
(define-public python-requests-toolbelt
(package
(name "python-requests-toolbelt")
- (version "0.9.1")
+ (version "1.0.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "requests-toolbelt" version))
(sha256
(base32
- "1h3gm88dcjbd7gm229a7x5qkkhnsqsjz0m0l2xyavm2ab3a8k04n"))))
+ "1ijvip427ki177ycrblcn1mfgsq7ixzpvqqfvidjn0a7s2is10bn"))))
(build-system python-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
@@ -3777,9 +3777,14 @@ (define-public python-requests-toolbelt
(delete-file "tests/test_x509_adapter.py")
;; Fails due to networking (socket.gaierror: [Errno -2]
;; Name or service not known).
- (delete-file "tests/test_multipart_encoder.py"))))))
- (native-inputs
- (list python-betamax python-mock python-pytest))
+ (delete-file "tests/test_multipart_encoder.py")
+ ;; Those tests are not compatible with urllib3 2.0,
+ ;; according to
+ ;; https://github.com/requests/toolbelt/pull/356
+ (delete-file "tests/test_sessions.py")
+ )))))
+ (native-inputs
+ (list python-betamax python-pyopenssl python-pytest python-trustme))
(propagated-inputs
(list python-requests))
(synopsis "Extensions to python-requests")
base-commit: e4ad2f178af65be6c8ca6e98a667787674cd8c82
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [bug#71806] [PATCH python-team] gnu: python-requests-toolbelt: Update to 1.0.0.
2024-06-27 16:20 [bug#71806] [PATCH python-team] gnu: python-requests-toolbelt: Update to 1.0.0 Felix Gruber
@ 2024-07-01 6:02 ` jgart via Guix-patches via
2024-07-01 15:56 ` [bug#71806] [PATCH v2] " Felix Gruber
0 siblings, 1 reply; 8+ messages in thread
From: jgart via Guix-patches via @ 2024-07-01 6:02 UTC (permalink / raw)
To: 71806; +Cc: Felix Gruber
Hi Felix,
Can you send a v2 rebased on master.
I can try to apply it and take a look there.
Thanks!
--
Best regards,
jgart
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#71806] [PATCH v2] gnu: python-requests-toolbelt: Update to 1.0.0.
2024-07-01 6:02 ` jgart via Guix-patches via
@ 2024-07-01 15:56 ` Felix Gruber
2024-07-13 14:07 ` bug#71806: [PATCH python-team] " jgart via Guix-patches via
0 siblings, 1 reply; 8+ messages in thread
From: Felix Gruber @ 2024-07-01 15:56 UTC (permalink / raw)
To: 71806
Cc: Felix Gruber, Lars-Dominik Braun, Marius Bakke, Munyoki Kilyungi,
Sharlatan Hellseher, Tanguy Le Carrour, jgart
* gnu/packages/python-web.scm (python-requests-toolbelt): Update to 1.0.0.
[arguments]: Delete tests that are incompatible with urllib3 >= 2.0.
[native-inputs]: Remove python-mock; add python-pyopenssl and python-trustme.
Change-Id: I349bd9cef34cdbf7a51612e8b9d5dac59101d1bd
---
gnu/packages/python-web.scm | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 1363e6ccdf..8a007f7402 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -49,7 +49,7 @@
;;; Copyright © 2021 Alice Brenon <alice.brenon@ens-lyon.fr>
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-;;; Copyright © 2022, 2023 Felix Gruber <felgru@posteo.net>
+;;; Copyright © 2022–2024 Felix Gruber <felgru@posteo.net>
;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
;;; Copyright © 2022 Luis Henrique Gomes Higino <luishenriquegh2701@gmail.com>
@@ -3733,13 +3733,13 @@ (define-public python-requests-mock
(define-public python-requests-toolbelt
(package
(name "python-requests-toolbelt")
- (version "0.9.1")
+ (version "1.0.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "requests-toolbelt" version))
(sha256
(base32
- "1h3gm88dcjbd7gm229a7x5qkkhnsqsjz0m0l2xyavm2ab3a8k04n"))))
+ "1ijvip427ki177ycrblcn1mfgsq7ixzpvqqfvidjn0a7s2is10bn"))))
(build-system python-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
@@ -3749,9 +3749,14 @@ (define-public python-requests-toolbelt
(delete-file "tests/test_x509_adapter.py")
;; Fails due to networking (socket.gaierror: [Errno -2]
;; Name or service not known).
- (delete-file "tests/test_multipart_encoder.py"))))))
- (native-inputs
- (list python-betamax python-mock python-pytest))
+ (delete-file "tests/test_multipart_encoder.py")
+ ;; Those tests are not compatible with urllib3 2.0,
+ ;; according to
+ ;; https://github.com/requests/toolbelt/pull/356
+ (delete-file "tests/test_sessions.py")
+ )))))
+ (native-inputs
+ (list python-betamax python-pyopenssl python-pytest python-trustme))
(propagated-inputs
(list python-requests))
(synopsis "Extensions to python-requests")
base-commit: 770659059be746bfa42eee2d9118031e5c7604e5
--
2.45.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#71806: [PATCH python-team] gnu: python-requests-toolbelt: Update to 1.0.0.
2024-07-01 15:56 ` [bug#71806] [PATCH v2] " Felix Gruber
@ 2024-07-13 14:07 ` jgart via Guix-patches via
2024-07-13 14:57 ` [bug#71806] " jgart via Guix-patches via
0 siblings, 1 reply; 8+ messages in thread
From: jgart via Guix-patches via @ 2024-07-13 14:07 UTC (permalink / raw)
To: 71806-done; +Cc: Felix Gruber, jgart
Hi Felix,
Thanks for the contribution!
I applied and pushed with guix style fixes in a separate commit.
--
all the best,
jgart
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#71806] [PATCH python-team] gnu: python-requests-toolbelt: Update to 1.0.0.
2024-07-13 14:07 ` bug#71806: [PATCH python-team] " jgart via Guix-patches via
@ 2024-07-13 14:57 ` jgart via Guix-patches via
2024-07-19 17:25 ` Felix Gruber
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: jgart via Guix-patches via @ 2024-07-13 14:57 UTC (permalink / raw)
To: 71806; +Cc: Felix Gruber, jgart
Hi Felix,
Sorry, but I had to revert this commit after noticing that this breaks
the poetry package on master. Could you create a feature branch for
merging this that is not the python-team branch and that passes poetry?
I don't have time at the moment to clean up the python-team branch. I'm
hoping others who worked on that branch can update it and merge it. I
haven't been using that branch myself and it is quite large at the
moment, requiring a lot of git conflict merge fixes.
--
all the best,
jgart
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#71806] [PATCH python-team] gnu: python-requests-toolbelt: Update to 1.0.0.
2024-07-13 14:57 ` [bug#71806] " jgart via Guix-patches via
@ 2024-07-19 17:25 ` Felix Gruber
2024-07-19 17:26 ` [bug#71806] [PATCH v3 1/2] " Felix Gruber
2024-07-19 17:26 ` [bug#71806] [PATCH v3 2/2] gnu: poetry: Build against newer python-requests-toolbelt Felix Gruber
2 siblings, 0 replies; 8+ messages in thread
From: Felix Gruber @ 2024-07-19 17:25 UTC (permalink / raw)
To: jgart, 71806
Hi jgart,
On 7/13/24 4:57 PM, jgart wrote:
> Sorry, but I had to revert this commit after noticing that this breaks
> the poetry package on master. Could you create a feature branch for
> merging this that is not the python-team branch and that passes poetry?
I don't have commit access to the guix repository, so I can't create a
feature branch. I've prepared a fix for poetry that I will send in an
updated patchset to issue 71806 that can be applied to master. Could you
maybe create that feature branch from my updated patchset?
Best regards,
Felix
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#71806] [PATCH v3 1/2] gnu: python-requests-toolbelt: Update to 1.0.0.
2024-07-13 14:57 ` [bug#71806] " jgart via Guix-patches via
2024-07-19 17:25 ` Felix Gruber
@ 2024-07-19 17:26 ` Felix Gruber
2024-07-19 17:26 ` [bug#71806] [PATCH v3 2/2] gnu: poetry: Build against newer python-requests-toolbelt Felix Gruber
2 siblings, 0 replies; 8+ messages in thread
From: Felix Gruber @ 2024-07-19 17:26 UTC (permalink / raw)
To: 71806
Cc: Felix Gruber, jgart, Lars-Dominik Braun, Marius Bakke,
Munyoki Kilyungi, Sharlatan Hellseher, Tanguy Le Carrour, jgart
* gnu/packages/python-web.scm (python-requests-toolbelt): Update to 1.0.0.
[arguments]: Delete tests that are incompatible with urllib3 >= 2.0.
[native-inputs]: Remove python-mock; add python-pyopenssl and python-trustme.
Change-Id: I349bd9cef34cdbf7a51612e8b9d5dac59101d1bd
---
gnu/packages/python-web.scm | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 30da9c8c3c..83620a5867 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -49,7 +49,7 @@
;;; Copyright © 2021 Alice Brenon <alice.brenon@ens-lyon.fr>
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-;;; Copyright © 2022, 2023 Felix Gruber <felgru@posteo.net>
+;;; Copyright © 2022–2024 Felix Gruber <felgru@posteo.net>
;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
;;; Copyright © 2022 Luis Henrique Gomes Higino <luishenriquegh2701@gmail.com>
@@ -3759,13 +3759,13 @@ (define-public python-requests-mock
(define-public python-requests-toolbelt
(package
(name "python-requests-toolbelt")
- (version "0.9.1")
+ (version "1.0.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "requests-toolbelt" version))
(sha256
(base32
- "1h3gm88dcjbd7gm229a7x5qkkhnsqsjz0m0l2xyavm2ab3a8k04n"))))
+ "1ijvip427ki177ycrblcn1mfgsq7ixzpvqqfvidjn0a7s2is10bn"))))
(build-system python-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
@@ -3775,9 +3775,14 @@ (define-public python-requests-toolbelt
(delete-file "tests/test_x509_adapter.py")
;; Fails due to networking (socket.gaierror: [Errno -2]
;; Name or service not known).
- (delete-file "tests/test_multipart_encoder.py"))))))
- (native-inputs
- (list python-betamax python-mock python-pytest))
+ (delete-file "tests/test_multipart_encoder.py")
+ ;; Those tests are not compatible with urllib3 2.0,
+ ;; according to
+ ;; https://github.com/requests/toolbelt/pull/356
+ (delete-file "tests/test_sessions.py")
+ )))))
+ (native-inputs
+ (list python-betamax python-pyopenssl python-pytest python-trustme))
(propagated-inputs
(list python-requests))
(synopsis "Extensions to python-requests")
base-commit: 9724e61cda80e4c59a2eb419a453887ecc551b9a
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [bug#71806] [PATCH v3 2/2] gnu: poetry: Build against newer python-requests-toolbelt.
2024-07-13 14:57 ` [bug#71806] " jgart via Guix-patches via
2024-07-19 17:25 ` Felix Gruber
2024-07-19 17:26 ` [bug#71806] [PATCH v3 1/2] " Felix Gruber
@ 2024-07-19 17:26 ` Felix Gruber
2 siblings, 0 replies; 8+ messages in thread
From: Felix Gruber @ 2024-07-19 17:26 UTC (permalink / raw)
To: 71806
Cc: Felix Gruber, jgart, Lars-Dominik Braun, Marius Bakke,
Munyoki Kilyungi, Sharlatan Hellseher, Tanguy Le Carrour, jgart
* gnu/packages/python-xyz.scm (poetry)[arguments]: Remove upper version
bounds on requests-toolbelt dependency.
Change-Id: I0e96dfb36c33935401fc93ff00eaf57b36188bb2
---
gnu/packages/python-xyz.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index fcf01f3d04..7ebe8b9e72 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21388,7 +21388,9 @@ (define-public poetry
(substitute* "setup.py"
;; Relax some of the requirements.
(("(keyring>=21.2.0),<22.0.0" _ keyring) keyring)
- (("(packaging>=20.4),<21.0" _ packaging) packaging)))))))
+ (("(packaging>=20.4),<21.0" _ packaging) packaging)
+ (("(requests-toolbelt>=0.9.1),<0.10.0" _ requests-toolbelt)
+ requests-toolbelt)))))))
(propagated-inputs
(list python-cachecontrol
python-cachy
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-07-19 17:28 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-27 16:20 [bug#71806] [PATCH python-team] gnu: python-requests-toolbelt: Update to 1.0.0 Felix Gruber
2024-07-01 6:02 ` jgart via Guix-patches via
2024-07-01 15:56 ` [bug#71806] [PATCH v2] " Felix Gruber
2024-07-13 14:07 ` bug#71806: [PATCH python-team] " jgart via Guix-patches via
2024-07-13 14:57 ` [bug#71806] " jgart via Guix-patches via
2024-07-19 17:25 ` Felix Gruber
2024-07-19 17:26 ` [bug#71806] [PATCH v3 1/2] " Felix Gruber
2024-07-19 17:26 ` [bug#71806] [PATCH v3 2/2] gnu: poetry: Build against newer python-requests-toolbelt Felix Gruber
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.