We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7b71e7 commit b18485eCopy full SHA for b18485e
.github/workflows/python-nightly.yml
@@ -86,11 +86,6 @@ jobs:
86
- name: "Check out the repo"
87
uses: "actions/checkout@v4"
88
89
- - name: "Set PYTHON_GIL"
90
- if: "${{ matrix.nogil }}"
91
- run: |
92
- echo "PYTHON_GIL=0" >> $GITHUB_ENV
93
-
94
- name: "Install ${{ matrix.python-version }} with deadsnakes"
95
uses: deadsnakes/action@6c8b9b82fe0b4344f4b98f2775fcc395df45e494
96
if: "!startsWith(matrix.python-version, 'pypy-')"
coverage/ctracer/module.c
@@ -31,6 +31,10 @@ PyInit_tracer(void)
31
return NULL;
32
}
33
34
+#ifdef Py_GIL_DISABLED
35
+ PyUnstable_Module_SetGIL(mod, Py_MOD_GIL_NOT_USED);
36
+#endif
37
+
38
if (CTracer_intern_strings() < 0) {
39
40
0 commit comments