Skip to content

Commit f6b8ac5

Browse files
committed
remove CIBW_BEFORE_BUILD
1 parent d059d49 commit f6b8ac5

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ jobs:
7474
CIBW_BUILD: cp3${{ matrix.python.minor }}-*
7575
CIBW_ARCHS_WINDOWS: x86 AMD64
7676
CIBW_ARCHS_MACOS: x86_64
77-
CIBW_BEFORE_BUILD: pip install -r {project}/${{ matrix.python.req_build }}
7877
CIBW_BEFORE_TEST: pip install -r {project}/${{ matrix.python.req_test }}
7978
CIBW_TEST_COMMAND: pytest {project}/test
8079
CIBW_ENABLE: ${{ matrix.python.ft == '1' && 'cpython-freethreading' || '' }}
@@ -87,7 +86,6 @@ jobs:
8786
output-dir: dist
8887
env:
8988
CIBW_BUILD: cp3${{ matrix.python.minor }}-macosx_arm64
90-
CIBW_BEFORE_BUILD: pip install -r {project}/${{ matrix.python.req_build }}
9189
CIBW_BEFORE_TEST: pip install -r {project}/${{ matrix.python.req_test }}
9290
CIBW_TEST_COMMAND: pytest {project}/test
9391
CIBW_ENABLE: ${{ matrix.python.ft == '1' && 'cpython-freethreading' || '' }}

pyproject.toml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -46,29 +46,7 @@ classifiers = [
4646
Homepage = "https://github.com/static-frame/arraykit"
4747

4848
[tool.setuptools]
49-
# Your src layout is already “src/” but package_dir currently maps the top-level
50-
# module "arraykit" to "src". Keep that mapping explicitly:
5149
package-dir = { "arraykit" = "src" }
5250

5351
[tool.setuptools.package-data]
5452
arraykit = ["__init__.pyi", "py.typed"]
55-
56-
# Define your C extension here. We'll add NumPy's include/lib paths dynamically
57-
# via a tiny setup.py shim (below).
58-
# [tool.setuptools.ext-modules."arraykit._arraykit"]
59-
# sources = [
60-
# "src/_arraykit.c",
61-
# "src/array_go.c",
62-
# "src/array_to_tuple.c",
63-
# "src/block_index.c",
64-
# "src/delimited_to_arrays.c",
65-
# "src/methods.c",
66-
# "src/tri_map.c",
67-
# "src/auto_map.c",
68-
# ]
69-
# include-dirs = ["src"]
70-
# define-macros = [["AK_VERSION", "1.2.0"]]
71-
72-
# # If you truly need to link to 'npymath', leave libraries empty here and let the
73-
# # setup.py shim add it only when/where it exists.
74-
# libraries = ["npymath"] # (we'll add dynamically in the shim if present)

0 commit comments

Comments
 (0)