Skip to content

Commit 499a92b

Browse files
committed
Allow building on 3.13 freetreading python.
1 parent 4706239 commit 499a92b

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/lazy_object_proxy/cext.c

+6-2
Original file line numberDiff line numberDiff line change
@@ -1435,8 +1435,12 @@ moduleinit(void)
14351435
return NULL;
14361436

14371437
Py_INCREF(&Proxy_Type);
1438-
PyModule_AddObject(module, "Proxy",
1439-
(PyObject *)&Proxy_Type);
1438+
PyModule_AddObject(module, "Proxy", (PyObject *)&Proxy_Type);
1439+
1440+
#ifdef Py_GIL_DISABLED
1441+
PyUnstable_Module_SetGIL(module, Py_MOD_GIL_NOT_USED);
1442+
#endif
1443+
14401444
return module;
14411445
}
14421446

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ envlist =
1414
clean,
1515
check,
1616
docs,
17-
{py39,py310,py311,py312,pypy39,pypy310}-{cover,nocov},
17+
{py39,py310,py311,py312,py312t,pypy39,pypy310}-{cover,nocov},
1818
report
1919
ignore_basepython_conflict = true
2020

@@ -26,6 +26,7 @@ basepython =
2626
py310: {env:TOXPYTHON:python3.10}
2727
py311: {env:TOXPYTHON:python3.11}
2828
py312: {env:TOXPYTHON:python3.12}
29+
py313t: {env:TOXPYTHON:python3.13t}
2930
{bootstrap,clean,check,report,docs,codecov,coveralls,extension-coveralls}: {env:TOXPYTHON:python3}
3031
setenv =
3132
PYTHONPATH={toxinidir}/tests

0 commit comments

Comments
 (0)