unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#63628] [PATCH 1/2] gnu: python-plotly: Fix version.
@ 2023-05-21 17:19 Vinicius Monego
  2023-05-21 17:21 ` [bug#63628] [PATCH 2/2] gnu: python-plotly: Update to 5.14.1 Vinicius Monego
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Vinicius Monego @ 2023-05-21 17:19 UTC (permalink / raw)
  To: 63628; +Cc: Vinicius Monego

* gnu/packages/graph.scm (python-plotly)[arguments]: In the fix-version phase,
substitute the correct version string.
---
 gnu/packages/graph.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm
index 1091d3d56e..4e4e3b3e73 100644
--- a/gnu/packages/graph.scm
+++ b/gnu/packages/graph.scm
@@ -6,7 +6,7 @@
 ;;; Copyright © 2019 Andreas Enge <andreas@enge.fr>
 ;;; Copyright © 2020 Alexander Krotov <krotov@iitp.ru>
 ;;; Copyright © 2020 Pierre Langlois <pierre.langlos@gmx.com>
-;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
+;;; Copyright © 2021, 2023 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2021 Alexandre Hannud Abdo <abdo@member.fsf.org>
 ;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
@@ -240,9 +240,10 @@ (define-public python-plotly
           (add-after 'unpack 'fix-version
             ;; Versioneer is useless when there is no git metadata.
             (lambda _
-              (substitute* "packages/python/plotly/setup.py"
-                (("version=versioneer.get_version\\(),")
-                 (format #f "version=~s," #$version)))))
+              (substitute* "packages/python/plotly/plotly/version.py"
+                (("\\_\\_version\\_\\_ = get\\_versions\\(\\)\\[\"version\"\\]")
+                 (format #f "__version__ = ~s"
+                         #$(package-version this-package))))))
           (add-after 'fix-version 'chdir
             (lambda _
               (chdir "packages/python/plotly")))
-- 
2.34.1





^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-07-01 11:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-21 17:19 [bug#63628] [PATCH 1/2] gnu: python-plotly: Fix version Vinicius Monego
2023-05-21 17:21 ` [bug#63628] [PATCH 2/2] gnu: python-plotly: Update to 5.14.1 Vinicius Monego
2023-06-10  2:25 ` [bug#63628] [PATCH v2 1/2] gnu: python-plotly: Fix version Vinicius Monego
2023-06-10  2:25   ` [bug#63628] [PATCH v2 2/2] gnu: python-plotly: Update to 5.14.1 Vinicius Monego
2023-07-01 11:13 ` bug#63628: [PATCH 1/2] gnu: python-plotly: Fix version Nicolas Goaziou

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).