Skip to content

Update msolve 0.8.0 #40260

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/pkgs/msolve/checksums.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tarball=msolve-VERSION.tar.gz
sha1=51dd500923406685a6417eb6a88219206cbfb07e
sha256=60c5db22778ebf8b19ee2fb49442be453e259ec6c77c8b2eb2e1b256deb19556
sha1=8f6f836979fc1fe9ad17101b0857622791e8789f
sha256=319ba0de67dca967dea40cb6e4dacf44eab387c2f0c2416b71842c11affbadfd
upstream_url=https://msolve.lip6.fr/downloads/vVERSION/msolve-VERSION.tar.gz
2 changes: 1 addition & 1 deletion build/pkgs/msolve/package-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.5
0.8.0
4 changes: 2 additions & 2 deletions src/sage/features/msolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def is_functional(self):
# if msolve_out.returncode != 0:
# return FeatureTestResult(self, False, reason="msolve -h returned "
# f"nonzero exit status {msolve_out.returncode}")
if (msolve_out.stdout[:46] !=
b'\nmsolve library for polynomial system solving\n'):
if (msolve_out.stdout[:45] !=
b'\nmsolve library for polynomial system solving'):
return FeatureTestResult(self, False,
reason="output of msolve -h not recognized")
return FeatureTestResult(self, True)
Expand Down
Loading