-
-
Notifications
You must be signed in to change notification settings - Fork 482
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
Use magick
command instead of the deprecated convert
if available
#38135
Conversation
Documentation preview for this PR (built with commit 64eaf5a; changes) is ready! 🎉 |
why not rename |
more precisely, ImageMagick version 7 provides |
If we want to drop support for IM6 then we shold replace all uses of |
From a quick glance at imagemagick.org, it seems like we could replace I guess my question is, should we switch away from the deprecated |
ImageMagick 6 doesn't install any |
we can test for And fix |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sage.features for ImageMagick, and spkg-configure, should be updated
(I can help with this, if needed)
Isn't the correct and stable new syntax merely |
I'm sure you're right. As I said, I just took a quick glance at the website, and I guess I misunderstood what they meant by "supporting subcommands for compatibility with ... version 6" (https://imagemagick.org/script/command-line-tools.php). |
I haven't (and don't plan to) touched anything outside |
magick
command instead of the deprecated convert
if available
The `convert` command is deprecated and throws a warning at runtime.
21d5d6e
to
6b07208
Compare
it seems that your patch assumes presence of |
No, it falls back to |
OK, sorry, I misread the diff. |
please rebase over the latest develop branch (it goes cleanly) |
FWIW, positive review for SageMath 10.4.beta9 on an Apple Silicon Mac M1 Pro with Homebrew up to date, on macOS 12.7.5 (Xcode 14.2). |
CI failures are unrelated. Let's merge it, although a cleaner implementation as discussed in #38173 would be preferable. |
…vert` if available The `convert` command is deprecated and throws a warning at runtime. URL: sagemath#38135 Reported by: Antonio Rojas Reviewer(s): Dima Pasechnik
Thanks. |
The
convert
command is deprecated and throws a warning at runtime.