From 56ec3a6fb945eba2d34144e8ed30caf8aa031efe Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 5 Jun 2021 08:50:08 +0200 Subject: gnu: r-unifiedwmwqpcr: Update to 1.28.0. * gnu/packages/bioconductor.scm (r-unifiedwmwqpcr): Update to 1.28.0. --- gnu/packages/bioconductor.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/bioconductor.scm') diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index f9216b2e22..449b2c303c 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -10673,14 +10673,14 @@ features (e.g. genes, microRNAs).") (define-public r-unifiedwmwqpcr (package (name "r-unifiedwmwqpcr") - (version "1.26.0") + (version "1.28.0") (source (origin (method url-fetch) (uri (bioconductor-uri "unifiedWMWqPCR" version)) (sha256 (base32 - "1ad5a7gy43l8x1rf5lgqiy2bv6fgah7cbnp4lrqwshphlnr30ndv")))) + "1clcz610sl3s0mjf84j21xgrmjhkxcc4h292ljwq5yzbkk68g896")))) (properties `((upstream-name . "unifiedWMWqPCR"))) (build-system r-build-system) -- cgit v1.2.3 aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/aux-files/python/sitecustomize.py
AgeCommit message (Expand)Author
2022-01-10sitecustomize.py: Honor .pth files....Fixes <https://issues.guix.gnu.org/52269>. * gnu/packages/aux-files/python/sitecustomize.py: Use site.addsitedirs to add the site directories; this takes care of the .pth files. Make sure the added items still appear before Python's own 'site-packages' directory. Maxim Cournoyer
2021-11-11aux-files: sitecustomize: Cleanup and add explanatory comments....Fixes <https://issues.guix.gnu.org/50105>. * gnu/packages/aux-files/python/sitecustomize.py: Add a comment explaining the general idea, and use sys.prefix instead of sys.executable. (major_minor): Use the unpacking operator (*) to provide the arguments. (site_packages_prefix): Use os.path.join to form the path. (python_site): Likewise. Use sys.prefix instead of sys.executable. (all_sites_raw): Split on os.path.pathsep. (sys.path): Directly splice the result in the list. Suggested-by: Hartmut Goebel <h.goebel@crazy-compilers.com> Reported-by: Mathieu Othacehe <othacehe@gnu.org> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Maxim Cournoyer