summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-28 08:42:03 +0200
committerGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-28 09:41:47 +0200
commita93a78b5b18e2b134fa051baf48cf7283667ea45 (patch)
tree416d96aca2db95c0242b9bcb4e792ec9235054a0
parenta30e13ffda50165436449fdda7bb061a1603fcaa (diff)
electrophysiology: python-bycycle: Fix build.
* guix-science/packages/electrophysiology.scm (python-bycycle) [propagated-inputs]: Replace python-pandas by python-pandas-2.
-rw-r--r--guix-science/packages/electrophysiology.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/guix-science/packages/electrophysiology.scm b/guix-science/packages/electrophysiology.scm
index b57841d..dca760c 100644
--- a/guix-science/packages/electrophysiology.scm
+++ b/guix-science/packages/electrophysiology.scm
@@ -676,6 +676,8 @@ The toolbox bundles together various signal processing and pattern recognition
676methods geared torwards the analysis of biosignals.") 676methods geared torwards the analysis of biosignals.")
677 (license license:bsd-3))) 677 (license license:bsd-3)))
678 678
679;; XXX: This package is not compatible with Pandas 3 yet,
680;; see <https://github.com/bycycle-tools/bycycle/issues/167>
679(define-public python-bycycle 681(define-public python-bycycle
680 (package 682 (package
681 (name "python-bycycle") 683 (name "python-bycycle")
@@ -697,7 +699,7 @@ methods geared torwards the analysis of biosignals.")
697 ;; Requires network access. 699 ;; Requires network access.
698 "--ignore=bycycle/tests/utils/test_download.py"))) 700 "--ignore=bycycle/tests/utils/test_download.py")))
699 (propagated-inputs (list python-matplotlib python-neurodsp python-numpy 701 (propagated-inputs (list python-matplotlib python-neurodsp python-numpy
700 python-pandas python-scipy)) 702 python-pandas-2 python-scipy))
701 (native-inputs (list python-pytest python-setuptools)) 703 (native-inputs (list python-pytest python-setuptools))
702 (home-page "https://bycycle-tools.github.io/") 704 (home-page "https://bycycle-tools.github.io/")
703 (synopsis "Cycle-by-cycle analyses of neural oscillations") 705 (synopsis "Cycle-by-cycle analyses of neural oscillations")