I am writing a C library, and have selected to license it with the LGPL because I want it to be possible for people to use it in a commercial way, but force them to at least keep the library itself open source.
I also want to create bindings for other languages like Python. I have been working on this using SWIG. I notice that SWIG's license is GPL3, so since the bindings include GPL3 code, does that mean that my bindings must be licensed as GPL3 instead of LGPL? Does this affect the license options for the library code at all?
Thanks.