From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 21 17:34:02 2021 Received: (at submit) by debbugs.gnu.org; 21 Dec 2021 22:34:02 +0000 Received: from localhost ([127.0.0.1]:55954 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mznhp-0007bK-QQ for submit@debbugs.gnu.org; Tue, 21 Dec 2021 17:34:02 -0500 Received: from lists.gnu.org ([209.51.188.17]:33012) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mznho-0007b6-Bd for submit@debbugs.gnu.org; Tue, 21 Dec 2021 17:34:00 -0500 Received: from eggs.gnu.org ([209.51.188.92]:37460) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mznho-00041a-5m for guix-patches@gnu.org; Tue, 21 Dec 2021 17:34:00 -0500 Received: from mout01.posteo.de ([185.67.36.65]:54945) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mznhl-0000Be-O3 for guix-patches@gnu.org; Tue, 21 Dec 2021 17:33:59 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 9D75A240026 for ; Tue, 21 Dec 2021 23:33:51 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.org; s=2017; t=1640126031; bh=nOnmL/T1WYz/niAWmb5ra9IM6X0KctG7ud4BMRJW7ik=; h=From:To:Subject:Date:From; b=IQbWghU3bUmISf8IA8T85Ou/om4ph4+FAoXX5E4o+AjmQSAainxr1l5bbUwY2o+p2 NOvX08imRfqYAKDw7mQhLyLmTh1UrIQYJ2RX4jkZsUL+5qgzf4teKz5PGIrfPwXsTr 5ac9Adg69ePEWtgCq7eDwny8Xo02+0Ab/YdrJb3sCr4kMrb2Erj7x9X+62pe990z8x yYB7WQdM3yfqL2BcpHejgOqs0ZTMAxECC6x4HfpQlIt2Ovwln0SZfbAj41pYfDIOWL caR4bqFBrfZsIdnh7JZa5q1h7xbYPXJsKvTkMKoxJ6CGRciW/ynIEIrfqgAeblOBK/ dsEUVaujVyaKw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4JJWTB4Y9Bz9rxB for ; Tue, 21 Dec 2021 23:33:50 +0100 (CET) From: Aleksandr Vityazev To: guix-patches@gnu.org Subject: [PATCH] gnu: python-pydata-sphinx-theme: Fix build. Message-Id: Date: Tue, 21 Dec 2021 22:34:14 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.67.36.65; envelope-from=avityazev@posteo.org; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Hi, the build fails because a package is required python-docutils < 0.17. --8<---------------cut here---------------start------------->8--- ERROR: Could not find a version that satisfies the requirement docutils<0.1= 7 (from versions: none) ERROR: No matching distribution found for docutils<0.17 error: Command '['/gnu/store/3282r97il61j9jkv2aaifa3nwdylzfsv-python-wrappe= r-3.9.6/bin/python', '-m', 'pip', '--disable-pip-version-check', 'wheel', '= --no-deps', '-w', '/tmp/guix-build-python-pydata-sphinx-theme-0.6.3.drv-0/t= mpqhg_sgru', '--quiet', 'docutils<0.17']' returned non-zero exit status 1. --8<---------------cut here---------------end--------------->8--- * gnu/packages/sphinx (python-pydata-sphinx-theme): [native-inputs]: Replace python-docutils with python-docutils-0.15. --- gnu/packages/sphinx.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 3ac5b5e22c..957c4dc9c4 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -18,6 +18,7 @@ ;;; Copyright =C2=A9 2021 Vinicius Monego ;;; Copyright =C2=A9 2021 Hugo Lecomte ;;; Copyright =C2=A9 2021 Maxim Cournoyer +;;; Copyright =C2=A9 2021 Aleksandr Vityazev ;;; ;;; This file is part of GNU Guix. ;;; @@ -919,7 +920,7 @@ (define-public python-pydata-sphinx-theme (list python-beautifulsoup4)) (native-inputs (list python-beautifulsoup4 - python-docutils + python-docutils-0.15 python-jupyter-sphinx python-numpy python-numpydoc --=20 2.34.0 --=20 Aleksandr Vityazev From debbugs-submit-bounces@debbugs.gnu.org Wed Dec 22 05:54:02 2021 Received: (at 52721) by debbugs.gnu.org; 22 Dec 2021 10:54:02 +0000 Received: from localhost ([127.0.0.1]:56911 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mzzFy-0008RJ-GF for submit@debbugs.gnu.org; Wed, 22 Dec 2021 05:54:02 -0500 Received: from xavier.telenet-ops.be ([195.130.132.52]:56626) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mzzFw-0008Qq-CK for 52721@debbugs.gnu.org; Wed, 22 Dec 2021 05:54:01 -0500 Received: from ptr-bvsjgyhxw7psv60dyze.18120a2.ip6.access.telenet.be ([IPv6:2a02:1811:8c09:9d00:3c5f:2eff:feb0:ba5a]) by xavier.telenet-ops.be with bizsmtp id ZNtx2600d4UW6Th01Nty2s; Wed, 22 Dec 2021 11:53:58 +0100 Message-ID: Subject: Re: [PATCH] gnu: python-pydata-sphinx-theme: Fix build. From: Maxime Devos To: 52721@debbugs.gnu.org Date: Wed, 22 Dec 2021 10:53:57 +0000 Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.38.3-1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telenet.be; s=r21; t=1640170438; bh=f6z+jMMf9dxYn0NKhcr78lLvgYRMBBFRJYvUTAF7ASk=; h=Subject:From:To:Date; b=Y8vbWK5nbn2Q2Q21nSkIltKLZNBH6c9fUiks2uL+iUerzXKtbYixqVFHZ7I2h1gdA jo6aVpXDYzJyDi7KpB9XRm0Vwuj832oIqm5UipDb3TtUGQpPV2P9aLS8nG0zhvWXGm 8hRh8lWPENXd4B2jG98QYt+ff3LCNLzPGhZci4r0yd7pf5RvGYHlDy/dlHkwNfyfSc w9/2vWM12EO99F6tSrT/B4FUZOmVtZaA6fdVm/zQRJW5g8RVzJ6dEwAbJbNcqh9FGD cCr1Jo17f6fcO0TsOMsfGJSP4LpJ5ZTCOFEZv3s/awIdzjYjBTuJmMEptl2+rZ2Jy+ x0q9pChLyIeTQ== X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 52721 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi, > the build fails because a package is required python-docutils < 0.17. Is python-docutils<0.17 truly required, or are the version requirements in the source code overly strict? If it's the latter, you could patch the source code to relax the requirements. The latter happens often, because library developers often don't know in advance whether the library is compatible with future versions of the dependencies. Greetings, Maxime. From debbugs-submit-bounces@debbugs.gnu.org Wed Dec 22 13:17:49 2021 Received: (at 52721) by debbugs.gnu.org; 22 Dec 2021 18:17:49 +0000 Received: from localhost ([127.0.0.1]:59701 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n06BN-0004FH-QE for submit@debbugs.gnu.org; Wed, 22 Dec 2021 13:17:49 -0500 Received: from mout01.posteo.de ([185.67.36.65]:36871) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n06BK-0004Ex-PI for 52721@debbugs.gnu.org; Wed, 22 Dec 2021 13:17:44 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 9908A24002B for <52721@debbugs.gnu.org>; Wed, 22 Dec 2021 19:17:36 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.org; s=2017; t=1640197056; bh=JbqtZZesKMgH5+rh4GxXBahTpos04jChM60SmmmwfKU=; h=From:To:Cc:Subject:Date:From; b=p3Vs0lFpox4yd/xMvqN4rHeGmE7aCd/7jydhrxVcALttwY4SjRAKDFoI43iYo8ILp FpResp7MOxhKU36cybyjnTGzWAGKBQM0FDi86BXLO8Hi9gTi6hM08k/xcaTaJc8qgt oIkPlvpGC0pb4i0l28sMdiCfSgKwL6UVp42pCT4XASEb96VffzTqT2wnrg3v35g9nM MS5yGSAKGQp+8l9Vk++kvWyAmY/hs7AhkqP1elnEL6maqXgAxmla/2N5WkOk/1fRQ8 XEpzI/Z80/yP+iD8+tUNvt+xiBiG4DnRjku85bopcsYkiDpikvAluhUxBFMS19AJcY AfqndAur6jkGA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4JK1l21ryCz9rwg; Wed, 22 Dec 2021 19:17:33 +0100 (CET) From: Aleksandr Vityazev To: Maxime Devos Subject: [PATCH]v2 gnu: python-pydata-sphinx-theme: Fix build. References: Date: Wed, 22 Dec 2021 18:17:57 +0000 In-Reply-To: (Maxime Devos's message of "Wed, 22 Dec 2021 10:53:57 +0000") Message-ID: <87r1a433my.fsf_-_@posteo.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 52721 Cc: 52721@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain Hi, On 2021-12-22, 10:53 +0000, Maxime Devos wrote: >> the build fails because a package is required python-docutils < 0.17. > > Is python-docutils<0.17 truly required, or are the version requirements > in the source code overly strict? If it's the latter, you could patch > the source code to relax the requirements. > > The latter happens often, because library developers often don't know > in advance whether the library is compatible with future versions of > the dependencies. For version 0.6.3 there is a file pydata-sphinx-theme-0.6.3/docs/requirements.txt where the last line contains: docutils==0.16 # temporary pin (0.17 broken captions). Also, the master version requires "docutils!=0.17.0. So I created a patch that adds an extra phase. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-python-pydata-sphinx-theme-Fix-build.patch Content-Transfer-Encoding: quoted-printable Content-Description: pydata-sphinx-theme >From 7301a82b07e73c3bdbeef0d1375094d625336766 Mon Sep 17 00:00:00 2001 Message-Id: <7301a82b07e73c3bdbeef0d1375094d625336766.1640196453.git.avitya= zev@posteo.org> From: Aleksandr Vityazev Date: Wed, 22 Dec 2021 17:25:18 +0300 Subject: [PATCH] gnu: python-pydata-sphinx-theme: Fix build. * gnu/packages/sphinx (python-pydata-sphinx-theme): [arguments]: add phase "relax-dependency-requirements". --- gnu/packages/sphinx.scm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 3ac5b5e22c..c9a9a2efbb 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -18,6 +18,7 @@ ;;; Copyright =C2=A9 2021 Vinicius Monego ;;; Copyright =C2=A9 2021 Hugo Lecomte ;;; Copyright =C2=A9 2021 Maxim Cournoyer +;;; Copyright =C2=A9 2021 Aleksandr Vityazev ;;; ;;; This file is part of GNU Guix. ;;; @@ -915,6 +916,13 @@ (define-public python-pydata-sphinx-theme (base32 "055bh3hyh72pafiylvgpsjlk18wm15gg4azc5rjlsww5z475iq1j")))) (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'build 'relax-dependency-requirements + (lambda _ + (substitute* "setup.py" + (("docutils<0.17") "docutils"))))))) (propagated-inputs (list python-beautifulsoup4)) (native-inputs --=20 2.34.0 --=-=-= Content-Type: text/plain -- Best regards, Aleksandr Vityazev --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Wed Dec 22 13:26:01 2021 Received: (at 52721) by debbugs.gnu.org; 22 Dec 2021 18:26:01 +0000 Received: from localhost ([127.0.0.1]:59712 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n06JN-0004Rz-CJ for submit@debbugs.gnu.org; Wed, 22 Dec 2021 13:26:01 -0500 Received: from michel.telenet-ops.be ([195.130.137.88]:36760) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n06JK-0004Ri-J1 for 52721@debbugs.gnu.org; Wed, 22 Dec 2021 13:25:59 -0500 Received: from ptr-bvsjgyhxw7psv60dyze.18120a2.ip6.access.telenet.be ([IPv6:2a02:1811:8c09:9d00:3c5f:2eff:feb0:ba5a]) by michel.telenet-ops.be with bizsmtp id ZWRv260054UW6Th06WRvYt; Wed, 22 Dec 2021 19:25:55 +0100 Message-ID: Subject: Re: [PATCH]v2 gnu: python-pydata-sphinx-theme: Fix build. From: Maxime Devos To: Aleksandr Vityazev Date: Wed, 22 Dec 2021 18:25:55 +0000 In-Reply-To: <87r1a433my.fsf_-_@posteo.org> References: <87r1a433my.fsf_-_@posteo.org> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.38.3-1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telenet.be; s=r21; t=1640197555; bh=26imHv/ASPlVTzeB1pSdEKucvPpDFXpZNwMzgW+kFtw=; h=Subject:From:To:Cc:Date:In-Reply-To:References; b=hhtwJgYPiZwjOzNU8ALl4Cy2qn6ywAPyBV/7EZbLhi03s90Ef3YbRvULvQLbzZVWz ABXuPgi7JrE2D8mVIZ1EeDXlejchrZv16JQsOw2cj2Ms7J6MIqnTaTwTAQx6Xebj1h HZMKQduqYaLcthhdXPsTNPDW6CCreOnWxFj2/tFyMDVYkEIuNhldWs1eljiOb8UAyD pbnWJup/NuumeuOd0fJtx5wVqZBlxpXV3iUE9UnH5BRbM2ftP0E9MANbeHuVLzoZC2 PgexZeqasDnWpwh+817lFjX2wrnwV4o97/tMU4Q8lXP46o+Hdzv4xwo28GMj9ab5U5 R8RSIodI0VMcQ== X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 52721 Cc: 52721@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Aleksandr Vityazev schreef op wo 22-12-2021 om 18:17 [+0000]: > > > > the build fails because a package is required python-docutils < > > > 0.17. > > > > Is python-docutils<0.17 truly required, or are the version > > requirements > > in the source code overly strict? If it's the latter, you could > > patch > > the source code to relax the requirements. > > > > The latter happens often, because library developers often don't > > know > > in advance whether the library is compatible with future versions > > of > > the dependencies. > > For version 0.6.3 there is a file > pydata-sphinx-theme-0.6.3/docs/requirements.txt where the last line > contains: > > docutils==0.16 # temporary pin (0.17 broken captions). > > Also, the master version requires "docutils!=0.17.0. > > So I created a patch that adds an extra phase. In that case, docutil<0.17 appears to be actually required, so the solution would be to use docutils=0.15 as you did originally, I think? Preferably with a comment ; captions are broken in 0.17.. Greetings, Maxime. From debbugs-submit-bounces@debbugs.gnu.org Thu Dec 23 17:54:14 2021 Received: (at 52721) by debbugs.gnu.org; 23 Dec 2021 22:54:14 +0000 Received: from localhost ([127.0.0.1]:35148 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n0WyU-0003DS-1M for submit@debbugs.gnu.org; Thu, 23 Dec 2021 17:54:14 -0500 Received: from mout01.posteo.de ([185.67.36.65]:41025) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n0WyR-0003DB-Mc for 52721@debbugs.gnu.org; Thu, 23 Dec 2021 17:54:12 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 04CFC240026 for <52721@debbugs.gnu.org>; Thu, 23 Dec 2021 23:54:04 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.org; s=2017; t=1640300045; bh=vgxLZO6fHV417kreFej97aBbf+3ZJuOOYCcfxEGZ78U=; h=From:To:Cc:Subject:Date:From; b=DVaEuxhvYmEYEgJS5nbc8n3dwne7/cpIvnHKWl3PYyij+psoV+m3Q81DG/UXrvI81 BL+9KqJ5H+4ddrXfd3JmDYMkJg0fEPUmRoPgaf/taSoVyEbQ2n2DDx3saznEriz8Xm DOdVF6ostyaJK+KJ39c0GNrJHlCky1aPu5Qec2syH9tA+GDSMH1c8LNYlKTO8cdlnA CQccNM6tZZ6nbGZhDJGhx64SsNG7/neDzbYPtDwROBe4jS/LRrvD23MHbUjghhvFPl 669xBJbRlwuKk+gIRegZCa5VaZX1G4IAKaLCkP1gxy4sUtHdQ2lDm2aFeZuTSuRDyo 7HdqdQOStsr/Q== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4JKlqb6c3Bz9rxG; Thu, 23 Dec 2021 23:54:03 +0100 (CET) From: Aleksandr Vityazev To: Maxime Devos Subject: Re: bug#52721: [PATCH] gnu: python-pydata-sphinx-theme: Fix build. References: <87r1a433my.fsf_-_@posteo.org> Date: Thu, 23 Dec 2021 22:54:27 +0000 In-Reply-To: (Maxime Devos's message of "Wed, 22 Dec 2021 18:25:55 +0000") Message-ID: <878rwbj5jw.fsf_-_@posteo.org> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 52721 Cc: 52721@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, On 2021-12-22, 18:25 +0000, Maxime Devos wrote: >> For version 0.6.3 there is a file >> pydata-sphinx-theme-0.6.3/docs/requirements.txt where the last line >> contains: >> >> docutils==0.16 # temporary pin (0.17 broken captions). >> >> Also, the master version requires "docutils!=0.17.0. >> >> So I created a patch that adds an extra phase. > > In that case, docutil<0.17 appears to be actually required, so the > solution would be to use docutils=0.15 as you did originally, I think? > Preferably with a comment ; captions are broken in 0.17.. > These were pushed by Efraim Flashner with 8efa775653f78dad8b254e719677e663be8f3240. -- Best regards, Aleksandr Vityazev From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 25 15:03:40 2021 Received: (at 52721-done) by debbugs.gnu.org; 25 Dec 2021 20:03:40 +0000 Received: from localhost ([127.0.0.1]:39895 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n1DGU-000484-S6 for submit@debbugs.gnu.org; Sat, 25 Dec 2021 15:03:39 -0500 Received: from flashner.co.il ([178.62.234.194]:41554) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n1DGO-00047l-Bw for 52721-done@debbugs.gnu.org; Sat, 25 Dec 2021 15:03:37 -0500 Received: from localhost (unknown [141.226.10.247]) by flashner.co.il (Postfix) with ESMTPSA id E126C402D2; Sat, 25 Dec 2021 20:03:25 +0000 (UTC) Date: Sat, 25 Dec 2021 22:02:37 +0200 From: Efraim Flashner To: Aleksandr Vityazev Subject: Re: [bug#52721] [PATCH] gnu: python-pydata-sphinx-theme: Fix build. Message-ID: Mail-Followup-To: Efraim Flashner , Aleksandr Vityazev , Maxime Devos , 52721-done@debbugs.gnu.org References: <87r1a433my.fsf_-_@posteo.org> <878rwbj5jw.fsf_-_@posteo.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="YS0+hTyOkoJ8mQnX" Content-Disposition: inline In-Reply-To: <878rwbj5jw.fsf_-_@posteo.org> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 52721-done Cc: 52721-done@debbugs.gnu.org, Maxime Devos X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --YS0+hTyOkoJ8mQnX Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Dec 23, 2021 at 10:54:27PM +0000, Aleksandr Vityazev wrote: > Hi, >=20 > On 2021-12-22, 18:25 +0000, Maxime Devos wrote: >=20 > >> For version 0.6.3 there is a file > >> pydata-sphinx-theme-0.6.3/docs/requirements.txt where the last line > >> contains: > >>=20 > >> docutils=3D=3D0.16 # temporary pin (0.17 broken captions). > >>=20 > >> Also, the master version requires "docutils!=3D0.17.0. > >>=20 > >> So I created a patch that adds an extra phase. > > > > In that case, docutil<0.17 appears to be actually required, so the > > solution would be to use docutils=3D0.15 as you did originally, I think? > > Preferably with a comment ; captions are broken in 0.17.. > > >=20 > These were pushed by Efraim Flashner with > 8efa775653f78dad8b254e719677e663be8f3240. >=20 Sorry, I didn't check for patches before working on this patch. --=20 Efraim Flashner =D7=A8=D7=A0=D7=A9=D7=9C=D7=A4 = =D7=9D=D7=99=D7=A8=D7=A4=D7=90 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --YS0+hTyOkoJ8mQnX Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmHHeNoACgkQQarn3Mo9 g1FSgxAAqlNveXsDbfeQwE5mVA50Jy/cOcqi4k/j/Q2yTRKggRb3WTaGVQoFCUBq I7sn5KCgj8KGWv4jniOZ1jEJZlJSx0EUHfuU/WRGoFkOPFRah5GwsYHa45F3P0nE vW37Zpp0VL1DnAkEKmCybjvaKMXNnGS7LfI2GcZJSbCSi9PnpKPhO20R4/dDmzZ+ vlcFkVXiYt/4yjKYi5+mX4NkWfxkO7uw4uQmTympMDLOQ1smF7Mm5q3KX2a4JUcg 0QEw+YzOUMSPMpyXRFExytC6GdElRusjzQYWoe8QJcvTgwPakg3iO39i3DhU7C8U 9eijfjcz8X3tKXQXe7uihUTbwiCzzQFmpIKrTHqyaq6zFFRRnHBGUu3WZmlWUs3x ycf046A34b8Kb3otKE5eAmEUIUYKz4wfxO93E+1UsNNVZldhEtdeDg8CqSVAkQUq jNesjorIHT/lNEWdAx3/d8s3eHJF8AIDOLmdSiMsTTTRFzWq+QdE4keAhMpetsGG /78+V8ww3A458MXco/uAmsT3zqU8PSKZf/XI+zAkqYvqNIUjIlAvEUAUP2UEdYHy ll+rCuyReP5NqsgPtMaa3KyOYgvyUYvPCKcVecC3DOAoduBbdDuFtkwbsN6BcfEg 2pS1JtN4K3AD1ZPiUNwEUKrVgctgkqLGzF2cieJwURrVeBtwpvo= =4qF3 -----END PGP SIGNATURE----- --YS0+hTyOkoJ8mQnX-- From unknown Sun Jun 22 07:39:26 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 23 Jan 2022 12:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator