Skip to content

Commit 237c883

Browse files
committed
.github/workflows: ...
1 parent 1bd792e commit 237c883

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/linux.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ on:
44
workflow_dispatch:
55

66
env:
7-
TALIB_C_VER: 0.6.4
8-
TALIB_PY_VER: ${{ github.ref_name }}
97
PIP_NO_VERIFY: 0
108
PIP_VERBOSE: 1
119
CIBW_BEFORE_BUILD: pip install -U setuptools Cython wheel meson-python ninja && pip install -U numpy
@@ -26,10 +24,10 @@ jobs:
2624
uses: pypa/cibuildwheel@v2.23.3
2725
env:
2826
CIBW_BEFORE_ALL: |
29-
TALIB_C_VER=${{env.TALIB_C_VER}} bash ./tools/build_talib_linux.sh
27+
bash ./tools/build_talib_linux.sh
3028
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
3129
CIBW_MUSLLINUX_X86_64_IMAGE: musllinux_1_2
32-
CIBW_SKIP: "pp* cp*-musllinux*"
30+
CIBW_SKIP: "pp*"
3331
CIBW_TEST_COMMAND: >
3432
cd .. &&
3533
pytest -k "not RSI and not threading" {project}/tests
@@ -42,12 +40,9 @@ jobs:
4240
CIBW_REPAIR_WHEEL_COMMAND_LINUX: |
4341
export LD_LIBRARY_PATH="/project/ta-lib-install/lib:$LD_LIBRARY_PATH"
4442
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
4843
- name: Upload wheels
4944
uses: actions/upload-artifact@v4
5045
with:
5146
path: ./wheelhouse/*.whl
52-
name: ${{ env.WHEEL_NAME }}
47+
name: "ta_lib-${{ github.ref_name }}-manylinux_x86_64"
5348

0 commit comments

Comments
 (0)