@jmagnusson I already posted an `imagemagick7.rb` in this thread a long time ago: https://gist.githubusercontent.com/zmwangx/a40b41fe2feb61b6a59aad6a3bc99218/raw/dcd915f230f28d0dc4d31d335c963e6279f2f452/imagemagick7.rb. You can use that.
But would you please elaborate on your use case? What do you need from IMv7? Scripting? Some revdep that works with IMv7 only (not that I know of)?
It seems to me that anyone can open a PR with a slightly modified `imagemagick7.rb` and get it merged (you can do it yourself and save yourself $100), and I won't complain if someone decides to do it. But as I pointed out above, I'm concerned about issues it may cause, so I don't want to be that guy.
Gotta love updating the resources... At least I just wrote a poet wrapper, so now the process has been simplified to
```sh
mktmpenv
multipoet urllib3 cryptography beautifulsoup4 requests | tee >(pbcopy)
brew edit buku
deactivate
```
`multipoet`: https://gist.github.com/zmwangx/4f4ff19bf8735d2c2612a2f9a58d6244.
> however you call it, the GUI is launched
Oh wait, actually, `mvim --version` might work. It contains
```
Compilation: clang -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_MACVIM -Wall -Wno-unknown-pragmas -pipe -DMACOS_X_UNIX -F/usr/local/opt/python/Frameworks -I/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/include/python2.7 -I/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/include/python2.7 -fno-strict-aliasing -fno-common -dynamic -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
```
so I guess you can tell from `-I/usr/local/Cellar/python/2.7.13/` whether it is peeking into the wrong version of Python.
> any chance of a similar fix for MacVim?
I don't know if there's chance for a fix, but even if there is it probably won't be similar. Vim doesn't have a non-interactive mode, and for MacVim, that means however you call it, the GUI is launched, and whatever info we might need is displayed in the GUI. Anyway, not really a day to day vim user, so take my opinions with a grain of salt.