Skip to content

Commit

Permalink
Update windows wheels to ta-lib 0.4.22
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Dec 13, 2021
1 parent 61211a1 commit 95949bd
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
Binary file not shown.
Binary file removed build_helpers/TA_Lib-0.4.21-cp38-cp38-win_amd64.whl
Binary file not shown.
Binary file removed build_helpers/TA_Lib-0.4.21-cp39-cp39-win_amd64.whl
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions build_helpers/install_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ python -m pip install --upgrade pip
$pyv = python -c "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')"

if ($pyv -eq '3.7') {
pip install build_helpers\TA_Lib-0.4.21-cp37-cp37m-win_amd64.whl
pip install build_helpers\TA_Lib-0.4.22-cp37-cp37m-win_amd64.whl
}
if ($pyv -eq '3.8') {
pip install build_helpers\TA_Lib-0.4.21-cp38-cp38-win_amd64.whl
pip install build_helpers\TA_Lib-0.4.22-cp38-cp38-win_amd64.whl
}
if ($pyv -eq '3.9') {
pip install build_helpers\TA_Lib-0.4.21-cp39-cp39-win_amd64.whl
pip install build_helpers\TA_Lib-0.4.22-cp39-cp39-win_amd64.whl
}

pip install -r requirements-dev.txt
Expand Down
4 changes: 2 additions & 2 deletions docs/windows_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ git clone https://github.com/freqtrade/freqtrade.git

Install ta-lib according to the [ta-lib documentation](https://github.com/mrjbq7/ta-lib#windows).

As compiling from source on windows has heavy dependencies (requires a partial visual studio installation), there is also a repository of unofficial pre-compiled windows Wheels [here](https://www.lfd.uci.edu/~gohlke/pythonlibs/#ta-lib), which need to be downloaded and installed using `pip install TA_Lib-0.4.21-cp38-cp38-win_amd64.whl` (make sure to use the version matching your python version).
As compiling from source on windows has heavy dependencies (requires a partial visual studio installation), there is also a repository of unofficial pre-compiled windows Wheels [here](https://www.lfd.uci.edu/~gohlke/pythonlibs/#ta-lib), which need to be downloaded and installed using `pip install TA_Lib0.4.22‑cp38cp38win_amd64.whl` (make sure to use the version matching your python version).

Freqtrade provides these dependencies for the latest 2 Python versions (3.7 and 3.8) and for 64bit Windows.
Freqtrade provides these dependencies for the latest 3 Python versions (3.7, 3.8 and 3.9) and for 64bit Windows.
Other versions must be downloaded from the above link.

``` powershell
Expand Down

0 comments on commit 95949bd

Please sign in to comment.