Jay Lee

Results 118 comments of Jay Lee

actually the real meat of the change was this commit: https://github.com/GAM-team/GAM/commit/b384bdb50309fe038bdd5463c5d237e8a2099099

This feature has existed for a while now. See: https://github.com/GAM-team/got-your-back/releases/tag/v1.55 When --cleanup is specified GYB should detect duplicate headers. I haven't tested but you may need --cleanup-from also. Jay

I was able to work around this with following changes to my PyInstaller .spec file: ``` extra_files = [copy_metadata('google-api-python-client')] a = Analysis(['gyb.py'], excludes=['FixTk', 'tcl', 'tk', '_tkinter', 'tkinter', 'Tkinter'], datas=extra_files, hiddenimports=[],...

Sean, I was able to get things working with the latest library by modifying my PyInstaller spec file to include the package metadata, see: https://github.com/jay0lee/GAM/blob/master/src/gam.spec#L16

@busunkim96 can we please re-open this issue? Seems it's still a problem for many library users.

@LMaiorano that's actually a different issue. Since version 2.0.0 this library has included static documents for all Google Discovery APIs. To use them, you'd need to tell PyInstaller to include...

this should be fixed. Can you try now and let me know?

Security issues detected in old gdata / atom code. These are almost certainly benign but we should still clean them up (ideally by killing GData usage) https://github.com/GAM-team/GAM/security/code-scanning Also Python 3.12...

OK, I've commited: https://github.com/GAM-team/GAM/commit/4454e55b1e6a171826166325989e56353dfcf416 which cleans up some 13,000 lines of GData cruft, mostly around tlslite and very old authentication code which GAM should never be using. I've also added...