Skip to content

Commit 014ccc3

Browse files
author
Release Manager
committed
gh-37673: upgrade msolve to 0.6.5 routine upgrade, dropping already applied patch URL: #37673 Reported by: Dima Pasechnik Reviewer(s): Dima Pasechnik, Marc Mezzarobba, Matthias Köppe
2 parents 93cc706 + 42b4b67 commit 014ccc3

File tree

4 files changed

+9
-62
lines changed

4 files changed

+9
-62
lines changed

build/pkgs/msolve/checksums.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
tarball=msolve-VERSION.tar.gz
2-
sha1=bfd1d4f2e5dc0eb321592b3add6665a9d3eadf8c
3-
md5=33a16c21ea8dea9e796d40f1dfd52fa9
4-
cksum=117017965
5-
upstream_url=https://github.com/algebraic-solving/msolve/releases/download/vVERSION/msolve-VERSION.tar.gz
2+
sha1=01b7c4b7b6a7df5051c1357e69d9b1fd381d2907
3+
md5=b45cdaa5a0e588a5382660ce1c245e65
4+
cksum=3873680457
5+
upstream_url=https://msolve.lip6.fr/downloads/vVERSION/msolve-VERSION.tar.gz
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
0.6.5

build/pkgs/msolve/patches/0001-Make-msolve-build-with-flint3.patch

Lines changed: 0 additions & 53 deletions
This file was deleted.

src/sage/features/msolve.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ def is_functional(self):
5555
"""
5656
msolve_out = subprocess.run(["msolve", "-h"], capture_output=True)
5757

58-
if msolve_out.returncode != 0:
59-
return FeatureTestResult(self, False, reason="msolve -h returned "
60-
f"non-zero exit status {msolve_out.returncode}")
61-
elif (msolve_out.stdout[:46] !=
58+
# if msolve_out.returncode != 0:
59+
# return FeatureTestResult(self, False, reason="msolve -h returned "
60+
# f"non-zero exit status {msolve_out.returncode}")
61+
if (msolve_out.stdout[:46] !=
6262
b'\nmsolve library for polynomial system solving\n'):
6363
return FeatureTestResult(self, False,
6464
reason="output of msolve -h not recognized")

0 commit comments

Comments
 (0)