* [bug#68613] [PATCH] gnu: Add python-scikit-opt.
@ 2024-01-20 11:41 TimotheeMathieu
2024-01-26 16:10 ` [bug#68613] Why QA fails Timothee Mathieu
2024-02-10 21:51 ` bug#68613: [PATCH] gnu: Add python-scikit-opt Ludovic Courtès
0 siblings, 2 replies; 4+ messages in thread
From: TimotheeMathieu @ 2024-01-20 11:41 UTC (permalink / raw)
To: 68613
Cc: TimotheeMathieu, Lars-Dominik Braun, Marius Bakke,
Munyoki Kilyungi, Sharlatan Hellseher, jgart
* gnu/packages/python-science.scm (python-scikit-opt): New variable.
Change-Id: I47d6b35d9658a37a242b4db61d293fa7efd33802
---
gnu/packages/python-science.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 3c131fe730..b385f0b211 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -318,6 +318,27 @@ (define-public python-scikit-image
"Scikit-image is a collection of algorithms for image processing.")
(license license:bsd-3)))
+(define-public python-scikit-opt
+ (package
+ (name "python-scikit-opt")
+ (version "0.6.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "scikit-opt" version))
+ (sha256
+ (base32 "0ycqizgsj7q57asc1bphzhf1fx9zqn0vx5rli7q541bas64hfqiy"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-numpy python-scipy))
+ (home-page "https://github.com/guofei9987/scikit-opt")
+ (synopsis "Swarm Intelligence in Python")
+ (description
+ "Scikit-opt(or sko) is a Python module of Swarm Intelligence
+ Algorithm. Such as Genetic Algorithm, Particle Swarm Optimization,
+ Simulated Annealing, Ant Colony Algorithm, Immune Algorithm,
+ Artificial Fish Swarm Algorithm.")
+ (license license:expat)))
+
(define-public python-scikit-optimize
(package
(name "python-scikit-optimize")
base-commit: 9c367ee1967b213b507a8bf041ea6c2623ceea96
--
2.41.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#68613] Why QA fails
2024-01-20 11:41 [bug#68613] [PATCH] gnu: Add python-scikit-opt TimotheeMathieu
@ 2024-01-26 16:10 ` Timothee Mathieu
2024-01-26 22:15 ` Clément Lassieur
2024-02-10 21:51 ` bug#68613: [PATCH] gnu: Add python-scikit-opt Ludovic Courtès
1 sibling, 1 reply; 4+ messages in thread
From: Timothee Mathieu @ 2024-01-26 16:10 UTC (permalink / raw)
To: 68613
[-- Attachment #1: Type: text/plain, Size: 324 bytes --]
I am not sure why QA fails to read my patch. This is my second package and I already had troubles with the first one (cf [ https://issues.guix.gnu.org/67051 | https://issues.guix.gnu.org/67051 ] ), although this time I used git sendmail to be sure that everything was formatted correctly so I don't know what went wrong.
[-- Attachment #2: Type: text/html, Size: 549 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#68613] Why QA fails
2024-01-26 16:10 ` [bug#68613] Why QA fails Timothee Mathieu
@ 2024-01-26 22:15 ` Clément Lassieur
0 siblings, 0 replies; 4+ messages in thread
From: Clément Lassieur @ 2024-01-26 22:15 UTC (permalink / raw)
To: Timothee Mathieu; +Cc: 68613
On Fri, Jan 26 2024, Timothee Mathieu wrote:
> I am not sure why QA fails to read my patch. This is my second package and I already had troubles with the first one (cf
> https://issues.guix.gnu.org/67051), although this time I used git sendmail to be sure that everything was formatted correctly so I don't know
> what went wrong.
Don't worry, it's not working at all. I think they are changing the
ownership of their infra or something like that.
Clément
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#68613: [PATCH] gnu: Add python-scikit-opt.
2024-01-20 11:41 [bug#68613] [PATCH] gnu: Add python-scikit-opt TimotheeMathieu
2024-01-26 16:10 ` [bug#68613] Why QA fails Timothee Mathieu
@ 2024-02-10 21:51 ` Ludovic Courtès
1 sibling, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2024-02-10 21:51 UTC (permalink / raw)
To: TimotheeMathieu
Cc: Sharlatan Hellseher, Munyoki Kilyungi, Lars-Dominik Braun, jgart,
Marius Bakke, 68613-done
[-- Attachment #1: Type: text/plain, Size: 409 bytes --]
Hi,
TimotheeMathieu <timothee.mathieu@inria.fr> skribis:
> * gnu/packages/python-science.scm (python-scikit-opt): New variable.
>
> Change-Id: I47d6b35d9658a37a242b4db61d293fa7efd33802
In the meantime, qa.guix caught up and apparently all is fine.
Applied with the changes below, as per:
https://guix.gnu.org/manual/devel/en/html_node/Synopses-and-Descriptions.html
Thanks,
Ludo’.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 1132 bytes --]
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index c02c2b3f9b..2cdada5ef3 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -352,12 +352,12 @@ (define-public python-scikit-opt
(build-system pyproject-build-system)
(propagated-inputs (list python-numpy python-scipy))
(home-page "https://github.com/guofei9987/scikit-opt")
- (synopsis "Swarm Intelligence in Python")
+ (synopsis "Swarm intelligence algorithm in Python")
(description
- "Scikit-opt(or sko) is a Python module of Swarm Intelligence
- Algorithm. Such as Genetic Algorithm, Particle Swarm Optimization,
- Simulated Annealing, Ant Colony Algorithm, Immune Algorithm,
- Artificial Fish Swarm Algorithm.")
+ "Scikit-opt (or sko) is a Python module implementing @dfn{swarm
+intelligence} algorithms: genetic algorithm, particle swarm optimization,
+simulated annealing, ant colony algorithm, immune algorithm, artificial fish
+swarm algorithm.")
(license license:expat)))
(define-public python-scikit-optimize
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-02-10 21:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-20 11:41 [bug#68613] [PATCH] gnu: Add python-scikit-opt TimotheeMathieu
2024-01-26 16:10 ` [bug#68613] Why QA fails Timothee Mathieu
2024-01-26 22:15 ` Clément Lassieur
2024-02-10 21:51 ` bug#68613: [PATCH] gnu: Add python-scikit-opt Ludovic Courtès
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).