diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-30 15:18:08 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-05-05 22:38:16 +0200 |
commit | 5e7da50260fbe7a979b8d32665d868a761f0376b (patch) | |
tree | fd027759f591769050a55c0d31afaaaca8dcdc3f /gnu/packages/python-science.scm | |
parent | b343aef5aa95c96454f4b0c9aefeb4c7255ad687 (diff) | |
download | guix-5e7da50260fbe7a979b8d32665d868a761f0376b.tar.gz guix-5e7da50260fbe7a979b8d32665d868a761f0376b.zip |
gnu: python-pandas-2: Fix version.
* gnu/packages/python-science.scm (python-pandas-2)[arguments]: Write version
string to "_version.py", not "_version_meson.py" to avoid reporting the
version as "0+unknown".
Change-Id: I1a18814e37c023102714326bc8bd505705234205
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r-- | gnu/packages/python-science.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index f5c57fd732..0769ab8e96 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -889,7 +889,7 @@ doing practical, real world data analysis in Python.") #~(modify-phases %standard-phases (add-after 'unpack 'version-set-by-guix (lambda _ - (with-output-to-file "_version_meson.py" + (with-output-to-file "_version.py" (lambda _ (display (string-append "__version__ = \"" |