Skip to content

Commit 94e2932

Browse files
committed
workaround for packaging
1 parent 3122068 commit 94e2932

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Utility script to print the python tag + the abi tag for a Python
22
# See PEP 425 for exactly what these are, but an example would be:
33
# cp27-cp27mu
4-
4+
import sysconfig
55
from packaging.tags import sys_tags
66

77

88
# first tag is always the more specific tag
99
tag = next(sys_tags())
10-
print("{0}-{1}".format(tag.interpreter, tag.abi))
10+
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

Comments
 (0)