GNU bug report logs - #55502
[PATCH 0/3] Add python-gpy

Previous Next

Package: guix-patches;

Reported by: Wiktor Zelazny <wzelazny <at> vurv.cz>

Date: Wed, 18 May 2022 14:29:03 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 55502 in the body.
You can then email your comments to 55502 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#55502; Package guix-patches. (Wed, 18 May 2022 14:29:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Wiktor Zelazny <wzelazny <at> vurv.cz>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 18 May 2022 14:29:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Zelazny <wzelazny <at> vurv.cz>
To: "guix-patches <at> gnu.org" <guix-patches <at> gnu.org>
Cc: Wiktor Zelazny <wzelazny <at> vurv.cz>
Subject: [PATCH 0/3] Add python-gpy
Date: Wed, 18 May 2022 14:01:19 +0000
guix import originally put python-cython in propagated-inputs of
python-gpy, but I followed the linter advice and moved it to
native-inputs. I could not figure out the role of this input.

Wiktor Żelazny (3):
  gnu: Add python-climin.
  gnu: Add python-paramz.
  gnu: Add python-gpy.

 gnu/packages/python-science.scm | 85 +++++++++++++++++++++++++++++++++
 1 file changed, 85 insertions(+)


base-commit: a028eafcc2c6beffcb370296a4c5a90fe34fbcca
-- 
2.36.0

-- 
Tato zprava byla prohledana na vyskyt viru
a nebezpecneho obsahu antivirovym systemem
MailScanner a zda se byt cista.


Information forwarded to guix-patches <at> gnu.org:
bug#55502; Package guix-patches. (Wed, 18 May 2022 16:50:02 GMT) Full text and rfc822 format available.

Message #8 received at 55502 <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Zelazny <wzelazny <at> vurv.cz>
To: "55502 <at> debbugs.gnu.org" <55502 <at> debbugs.gnu.org>
Cc: Wiktor Zelazny <wzelazny <at> vurv.cz>
Subject: [PATCH 1/3] gnu: Add python-climin.
Date: Wed, 18 May 2022 16:20:23 +0000
* gnu/packages/python-science.scm (python-climin): New variable.
---
 gnu/packages/python-science.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index bf7c7ce45f..ad17401a61 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -18,6 +18,7 @@
 ;;; Copyright © 2022 Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
 ;;; Copyright © 2022 Guillaume Le Vaillant <glv <at> posteo.net>
 ;;; Copyright © 2022 Paul A. Patience <paul <at> apatience.com>
+;;; Copyright © 2022 Wiktor Żelazny <wzelazny <at> vurv.cz>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1222,3 +1223,25 @@ (define-public python-traittypes
 out of the scope of the main traitlets project but are a common requirement to
 build applications with traitlets in combination with the scipy stack.")
     (license license:bsd-3)))
+
+(define-public python-climin
+  (package
+    (name "python-climin")
+    (version "0.1a1")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "climin" version))
+              (sha256
+               (base32
+                "1wpjisd5zzi5yvjff02hnxn84822k8sdxvvd33lil2x79wdb36rv"))))
+    (build-system python-build-system)
+    (native-inputs (list python-nose))
+    (propagated-inputs (list python-numpydoc python-numpy python-scipy))
+    (home-page "https://github.com/BRML/climin")
+    (synopsis "Optimization for machine learning")
+    (description
+     "@command{climin} is a Python package for optimization,
+heavily biased to machine learning scenarios distributed under the BSD 3-clause
+license.  It works on top of @command{numpy} and (partially)
+@command{gnumpy}.")
+    (license license:bsd-3)))
-- 
2.36.0

-- 
Tato zprava byla prohledana na vyskyt viru
a nebezpecneho obsahu antivirovym systemem
MailScanner a zda se byt cista.


Information forwarded to guix-patches <at> gnu.org:
bug#55502; Package guix-patches. (Wed, 18 May 2022 16:50:03 GMT) Full text and rfc822 format available.

Message #11 received at 55502 <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Zelazny <wzelazny <at> vurv.cz>
To: "55502 <at> debbugs.gnu.org" <55502 <at> debbugs.gnu.org>
Cc: Wiktor Zelazny <wzelazny <at> vurv.cz>
Subject: [PATCH 2/3] gnu: Add python-paramz.
Date: Wed, 18 May 2022 16:20:27 +0000
* gnu/packages/python-science.scm (python-paramz): New variable.
---
 gnu/packages/python-science.scm | 34 +++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index ad17401a61..a871bcf89e 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -1245,3 +1245,37 @@ (define-public python-climin
 license.  It works on top of @command{numpy} and (partially)
 @command{gnumpy}.")
     (license license:bsd-3)))
+
+(define-public python-paramz
+  (package
+    (name "python-paramz")
+    (version "0.9.5")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "paramz" version))
+              (sha256
+               (base32
+                "16hbh97kj6b1c2gw22rqnr3w3nqkszh9gj8vgx738gq81wf225q9"))))
+    (build-system python-build-system)
+    (propagated-inputs (list python-decorator python-numpy python-scipy
+                             python-six))
+    (home-page "https://github.com/sods/paramz")
+    (synopsis "The Parameterization Framework")
+    (description
+     "@command{paramz} is a lightweight parameterization framework
+for parameterized model creation and handling.  Its features include:
+
+@itemize
+ @item Easy model creation with parameters.
+ @item Fast optimized access of parameters for optimization routines.
+ @item Memory efficient storage of parameters (only one copy in memory).
+ @item Renaming of parameters.
+ @item Intuitive printing of models and parameters.
+ @item Gradient saving directly inside parameters.
+ @item Gradient checking of parameters.
+ @item Optimization of parameters.
+ @item Jupyter notebook integration.
+ @item Efficient storage of models, for reloading.
+ @item Efficient caching.
+@end itemize")
+    (license license:bsd-3)))
-- 
2.36.0

-- 
Tato zprava byla prohledana na vyskyt viru
a nebezpecneho obsahu antivirovym systemem
MailScanner a zda se byt cista.





Information forwarded to guix-patches <at> gnu.org:
bug#55502; Package guix-patches. (Wed, 18 May 2022 16:50:03 GMT) Full text and rfc822 format available.

Message #14 received at 55502 <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Zelazny <wzelazny <at> vurv.cz>
To: "55502 <at> debbugs.gnu.org" <55502 <at> debbugs.gnu.org>
Cc: Wiktor Zelazny <wzelazny <at> vurv.cz>
Subject: [PATCH 3/3] gnu: Add python-gpy.
Date: Wed, 18 May 2022 16:20:30 +0000
* gnu/packages/python-science.scm (python-gpy): New variable.
---
 gnu/packages/python-science.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index a871bcf89e..fcc17a0b26 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -1279,3 +1279,31 @@ (define-public python-paramz
  @item Efficient caching.
 @end itemize")
     (license license:bsd-3)))
+
+(define-public python-gpy
+  (package
+    (name "python-gpy")
+    (version "1.10.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "GPy" version))
+              (sha256
+               (base32
+                "1yx65ajrmqp02ykclhlb0n8s3bx5r0xj075swwwigiqaippr7dx2"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases (modify-phases %standard-phases
+                  (add-before 'check 'remove-plotting-tests
+                    ;; These fail
+                    (lambda _
+                      (delete-file "GPy/testing/plotting_tests.py"))))))
+    (native-inputs (list python-cython python-nose python-climin))
+    (propagated-inputs (list python-numpy python-paramz python-scipy
+                             python-six))
+    (home-page "https://sheffieldml.github.io/GPy/")
+    (synopsis "The Gaussian Process Toolbox")
+    (description
+     "@command{GPy} is a Gaussian Process (GP) framework written in
+Python, from the Sheffield machine learning group.  GPy implements a range of
+machine learning algorithms based on GPs.")
+    (license license:bsd-3)))
-- 
2.36.0

-- 
Tato zprava byla prohledana na vyskyt viru
a nebezpecneho obsahu antivirovym systemem
MailScanner a zda se byt cista.





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Sun, 29 May 2022 21:57:01 GMT) Full text and rfc822 format available.

Notification sent to Wiktor Zelazny <wzelazny <at> vurv.cz>:
bug acknowledged by developer. (Sun, 29 May 2022 21:57:01 GMT) Full text and rfc822 format available.

Message #19 received at 55502-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Wiktor Zelazny <wzelazny <at> vurv.cz>
Cc: 55502-done <at> debbugs.gnu.org
Subject: Re: bug#55502: [PATCH 0/3] Add python-gpy
Date: Sun, 29 May 2022 23:55:46 +0200
Hi,

Wiktor Zelazny <wzelazny <at> vurv.cz> skribis:

>   gnu: Add python-climin.
>   gnu: Add python-paramz.
>   gnu: Add python-gpy.

Applied, thanks!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 27 Jun 2022 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 302 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.