We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3122068 commit 94e2932Copy full SHA for 94e2932
docker/build_scripts/python-tag-abi-tag.py
@@ -1,10 +1,11 @@
1
# Utility script to print the python tag + the abi tag for a Python
2
# See PEP 425 for exactly what these are, but an example would be:
3
# cp27-cp27mu
4
-
+import sysconfig
5
from packaging.tags import sys_tags
6
7
8
# first tag is always the more specific tag
9
tag = next(sys_tags())
10
-print("{0}-{1}".format(tag.interpreter, tag.abi))
+py_nogil = "t" if sysconfig.get_config_vars().get("Py_GIL_DISABLED", 0) else ""
11
+print("{0}-{1}{2}".format(tag.interpreter, tag.abi, py_nogil))
0 commit comments