diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-30 11:39:09 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-05-05 22:38:15 +0200 |
commit | 74dd2def7fa34d40245ed3de351a1cf945224e3c (patch) | |
tree | 886d6eccb1a0f43551e710bdae4248be0e7031b9 | |
parent | d85a19a29c54cafc87d2d920825592041c5e3f72 (diff) | |
download | guix-74dd2def7fa34d40245ed3de351a1cf945224e3c.tar.gz guix-74dd2def7fa34d40245ed3de351a1cf945224e3c.zip |
gnu: python-pandas: Default to version 2.x.
* gnu/packages/python-science.scm (python-pandas): Define as alias for
python-pandas-2; rename existing definition to...
(python-pandas-1): ...this new variable.
Change-Id: If359e3b2d42c683d7d0152b1757bbc5a979c999b
-rw-r--r-- | gnu/packages/python-science.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 91f6cb1131..bbf80907e0 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -748,7 +748,7 @@ spheres, cubes, etc.") tissue-specificity metrics for gene expression.") (license license:gpl3+))) -(define-public python-pandas +(define-public python-pandas-1 (package (name "python-pandas") (version "1.5.3") @@ -957,6 +957,8 @@ and intuitive. It aims to be the fundamental high-level building block for doing practical, real world data analysis in Python.") (license license:bsd-3))) +(define-public python-pandas python-pandas-2) + (define-public python-pandas-stubs (package (name "python-pandas-stubs") |