[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/08: gnu: macs: Patch version check for Python.
From: |
guix-commits |
Subject: |
05/08: gnu: macs: Patch version check for Python. |
Date: |
Mon, 24 Apr 2023 13:49:39 -0400 (EDT) |
rekado pushed a commit to branch core-updates
in repository guix.
commit 9703ecc47bfc2324669f9950b21bcca2b99b4c89
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Apr 24 18:57:36 2023 +0200
gnu: macs: Patch version check for Python.
* gnu/packages/bioinformatics.scm (macs)[source]: Patch check for Python >
3.6.
---
gnu/packages/bioinformatics.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index f54b1db86c..d6b8dcaad4 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -6032,7 +6032,10 @@ experiments.")
(when (file-exists? generated-file)
(delete-file generated-file))))
(find-files "." "\\.pyx$"))
- (delete-file "MACS2/IO/CallPeakUnitPrecompiled.c")))))
+ (delete-file "MACS2/IO/CallPeakUnitPrecompiled.c")
+ ;; Python 3.10 is in fact more recent than 3.6.
+ (substitute* "setup.py"
+ (("float\\(sys.version\\[:3\\]\\)<3.6") "False"))))))
(build-system python-build-system)
(arguments
`(#:phases
- branch core-updates updated (a0d49a726a -> 09d2976c86), guix-commits, 2023/04/24
- 01/08: gnu: cereal: Use GCC 10., guix-commits, 2023/04/24
- 05/08: gnu: macs: Patch version check for Python.,
guix-commits <=
- 02/08: gnu: cereal-1.3.0: Update doctest.h., guix-commits, 2023/04/24
- 06/08: gnu: Add python-rich-click., guix-commits, 2023/04/24
- 07/08: gnu: multiqc: Update to 1.14., guix-commits, 2023/04/24
- 03/08: gnu: Add htscodecs., guix-commits, 2023/04/24
- 08/08: gnu: python-plotly-2.4.1: Patch for Python 3.10 changes., guix-commits, 2023/04/24
- 04/08: gnu: salmon: Update to 1.10.1., guix-commits, 2023/04/24