Skip to content

Commit d325495

Browse files
committed
set pure_python to False
1 parent b7728bd commit d325495

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.github/workflows/pypi-build-artifacts.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ jobs:
7474
# Ignore tests for pypy since not all dependencies are compiled for it
7575
# and would require a local rust build chain
7676
CIBW_TEST_SKIP: "pp*"
77-
CIBW_BUILD_VERBOSITY: "1"
7877

7978
- name: Add source distribution
8079
if: startsWith(matrix.os, 'ubuntu')

.github/workflows/svn-build-artifacts.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ jobs:
6969
# Ignore tests for pypy since not all dependencies are compiled for it
7070
# and would require a local rust build chain
7171
CIBW_TEST_SKIP: "pp*"
72-
CIBW_BUILD_VERBOSITY: "1"
7372

7473
- name: Add source distribution
7574
if: startsWith(matrix.os, 'ubuntu')

build-module.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ def build_cython_extensions(self) -> None:
7070
def initialize(self, version: str, build_data: dict[str, Any]) -> None:
7171
try:
7272
self.build_cython_extensions()
73+
# Tell Hatchling this is not a pure Python wheel
74+
build_data['pure_python'] = False
7375
except Exception:
7476
if not allowed_to_fail:
7577
raise

0 commit comments

Comments
 (0)