File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ test-command = """
156
156
pd.test(extra_args=["-m not clipboard and single_cpu and not slow and not network and not db", "--no-strict-data-files"]);' \
157
157
"""
158
158
free-threaded-support = true
159
- before-build = " bash {package}/scripts/cibw_before_build.sh"
159
+ before-build = " PACKAGE_DIR={package} bash {package}/scripts/cibw_before_build.sh"
160
160
161
161
[tool .cibuildwheel .windows ]
162
162
before-build = " pip install delvewheel && bash {package}/scripts/cibw_before_build.sh"
Original file line number Diff line number Diff line change 1
1
# Add 3rd party licenses, like numpy does
2
-
3
- PROJECT_DIR=" ${1:- $PWD } "
4
-
5
- ls $PROJECT_DIR /LICENSES/*
6
- ls .
7
-
8
- for file in $PROJECT_DIR /LICENSES/* ; do
9
- cat $file >> $PROJECT_DIR /LICENSE
2
+ for file in $PACKAGE_DIR /LICENSES/* ; do
3
+ cat $file >> $PACKAGE_DIR /LICENSE
10
4
done
11
5
12
6
# TODO: Delete when there's a PyPI Cython release that supports free-threaded Python 3.13.
You can’t perform that action at this time.
0 commit comments