Skip to content

Commit

Permalink
Fix TA-Lib Linux installation in GitHub Actions workflow
Browse files Browse the repository at this point in the history
- Correct tar extraction filename to match the downloaded TA-Lib 0.6.1 archive
- Ensure consistent archive extraction for the specified TA-Lib version
  • Loading branch information
saleh-mir committed Jan 28, 2025
1 parent 1a8138f commit 76352c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Install ta-lib Linux
if: steps.talib-cache.outputs.cache-hit != 'true'
run: |
wget https://github.com/TA-Lib/ta-lib/releases/download/v0.6.1/ta-lib-0.6.1-src.tar.gz -q && tar -xzf ta-lib-0.4.0-src.tar.gz
wget https://github.com/TA-Lib/ta-lib/releases/download/v0.6.1/ta-lib-0.6.1-src.tar.gz -q && tar -xzf ta-lib-0.6.1-src.tar.gz
cd ta-lib/
./configure --prefix=$HOME/.local/ta-lib
make
Expand Down

0 comments on commit 76352c3

Please sign in to comment.