File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7575 # Ignore tests for pypy since not all dependencies are compiled for it
7676 # and would require a local rust build chain
7777 CIBW_TEST_SKIP : " pp*"
78+ PYTHON_GIL : " 1"
7879
7980 - name : Add source distribution
8081 if : startsWith(matrix.os, 'ubuntu')
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ def build_cython_extensions() -> None:
2727 from Cython .Build import build_ext , cythonize
2828 from setuptools import Extension
2929 from setuptools .dist import Distribution
30- import sys
3130
3231 Cython .Compiler .Options .annotate = True
3332
@@ -40,11 +39,6 @@ def build_cython_extensions() -> None:
4039 "-O3" ,
4140 ]
4241
43- no_gil = hasattr (sys , "_is_gil_enabled" ) and not sys ._is_gil_enabled ()
44-
45- if no_gil :
46- extra_compile_args .append ("-DPy_GIL_DISABLED" ) # required for 3.14
47-
4842 package_path = "pyiceberg"
4943
5044 extension = Extension (
You can’t perform that action at this time.
0 commit comments