PetterS / quickjs

Thin Python wrapper of https://bellard.org/quickjs/
https://github.com/bellard/QuickJS
MIT License
177 stars 19 forks source link

Use Python 3.8.2 in CI. #43

Closed PetterS closed 3 years ago

PetterS commented 4 years ago

For some reason, the stack overflow detection in QuickJS does not work when Python 3.8 is used in CI. Works fine locally with all versions.

PetterS commented 4 years ago

This one-line patch to QuickJS fixes the issue. But we must make sure to update all entry points into the library. E.g. JS_Call should also be affected I think but it somehow works anyway.

PetterS commented 4 years ago

(Not saying this is a good solution)