Skip to content

Commit dda513b

Browse files
committed
.github/workflows: ...
1 parent 5f371b9 commit dda513b

1 file changed

Lines changed: 6 additions & 10 deletions

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
14+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1515
steps:
1616
- uses: actions/checkout@v3
1717

@@ -26,18 +26,14 @@ jobs:
2626
pip install --upgrade pip wheel setuptools
2727
pip install -r requirements_test.txt
2828
pip install flake8
29-
./tools/build_talib_from_source.bash $DEPS_PATH
30-
env:
31-
DEPS_PATH: ${{ github.workspace }}/dependencies
32-
TA_INCLUDE_PATH: ${{ github.workspace }}/dependencies/include
33-
TA_LIBRARY_PATH: ${{ github.workspace }}/dependencies/lib
29+
./tools/build_talib_linux.sh
3430
3531
- name: Build cython modules in-place
3632
run: |
37-
python setup.py build_ext --inplace --include-dirs=$TA_INCLUDE_PATH --library-dirs=$TA_LIBRARY_PATH
33+
python setup.py build_ext --inplace
3834
env:
39-
TA_INCLUDE_PATH: ${{ github.workspace }}/dependencies/include
40-
TA_LIBRARY_PATH: ${{ github.workspace }}/dependencies/lib
35+
TA_INCLUDE_PATH: "ta-lib-install/include"
36+
TA_LIBRARY_PATH: "ta-lib-install/lib"
4137

4238
- name: Lint with flake8
4339
run: |
@@ -50,4 +46,4 @@ jobs:
5046
run: |
5147
PYTHONPATH=. pytest
5248
env:
53-
LD_LIBRARY_PATH: ${{ github.workspace }}/dependencies/lib
49+
LD_LIBRARY_PATH: "ta-lib-install/lib"

0 commit comments

Comments
 (0)