File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
6
6
env :
7
- TALIB_C_VER : 0.6.4
8
- TALIB_PY_VER : ${{ github.ref_name }}
9
7
PIP_NO_VERIFY : 0
10
8
PIP_VERBOSE : 1
11
9
CIBW_BEFORE_BUILD : pip install -U setuptools Cython wheel meson-python ninja && pip install -U numpy
@@ -26,10 +24,10 @@ jobs:
26
24
uses : pypa/cibuildwheel@v2.23.3
27
25
env :
28
26
CIBW_BEFORE_ALL : |
29
- TALIB_C_VER=${{env.TALIB_C_VER}} bash ./tools/build_talib_linux.sh
27
+ bash ./tools/build_talib_linux.sh
30
28
CIBW_MANYLINUX_X86_64_IMAGE : manylinux_2_28
31
29
CIBW_MUSLLINUX_X86_64_IMAGE : musllinux_1_2
32
- CIBW_SKIP : " pp* cp*-musllinux* "
30
+ CIBW_SKIP : " pp*"
33
31
CIBW_TEST_COMMAND : >
34
32
cd .. &&
35
33
pytest -k "not RSI and not threading" {project}/tests
42
40
CIBW_REPAIR_WHEEL_COMMAND_LINUX : |
43
41
export LD_LIBRARY_PATH="/project/ta-lib-install/lib:$LD_LIBRARY_PATH"
44
42
auditwheel repair -w {dest_dir} {wheel}
45
- - name : Set wheel name
46
- run : |
47
- echo "WHEEL_NAME=ta_lib-${{env.TALIB_PY_VER}}-manylinux_x86_64" >> $GITHUB_ENV
48
43
- name : Upload wheels
49
44
uses : actions/upload-artifact@v4
50
45
with :
51
46
path : ./wheelhouse/*.whl
52
- name : ${{ env.WHEEL_NAME }}
47
+ name : " ta_lib- ${{ github.ref_name }}-manylinux_x86_64 "
53
48
You can’t perform that action at this time.
0 commit comments