Skip to content

Commit 3abbeeb

Browse files
author
Release Manager
committed
gh-40260: Update msolve 0.8.0 Mainly to get us out of the sticky situation with the modified 0.7.5 tarball, for which we have two conflicting binaries breaking the gh release workflow: https://github.com/sagemath/sage/actions/runs/1565663 8164/job/44108544612 URL: #40260 Reported by: Volker Braun Reviewer(s): Dima Pasechnik
2 parents 469df79 + 2712e48 commit 3abbeeb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build/pkgs/msolve/checksums.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=msolve-VERSION.tar.gz
2-
sha1=51dd500923406685a6417eb6a88219206cbfb07e
3-
sha256=60c5db22778ebf8b19ee2fb49442be453e259ec6c77c8b2eb2e1b256deb19556
2+
sha1=8f6f836979fc1fe9ad17101b0857622791e8789f
3+
sha256=319ba0de67dca967dea40cb6e4dacf44eab387c2f0c2416b71842c11affbadfd
44
upstream_url=https://msolve.lip6.fr/downloads/vVERSION/msolve-VERSION.tar.gz

build/pkgs/msolve/package-version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.5
1+
0.8.0

src/sage/features/msolve.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ def is_functional(self):
5959
# if msolve_out.returncode != 0:
6060
# return FeatureTestResult(self, False, reason="msolve -h returned "
6161
# f"nonzero exit status {msolve_out.returncode}")
62-
if (msolve_out.stdout[:46] !=
63-
b'\nmsolve library for polynomial system solving\n'):
62+
if (msolve_out.stdout[:45] !=
63+
b'\nmsolve library for polynomial system solving'):
6464
return FeatureTestResult(self, False,
6565
reason="output of msolve -h not recognized")
6666
return FeatureTestResult(self, True)

0 commit comments

Comments
 (0)