1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-python synced 2025-06-16 07:54:09 +02:00

include verify gil step and validated python version

This commit is contained in:
priya-kinthali 2025-03-19 18:06:05 +05:30
parent 3005a75a7a
commit 33f472dc21
2 changed files with 56 additions and 83 deletions

View file

@ -0,0 +1,3 @@
import sys
if __name__ == '__main__':
print(f"Using GIL: {sys._is_gil_enabled()}\n")