From ada7b2058390b9e1770180548bd80a0e5d242d37 Mon Sep 17 00:00:00 2001 From: Gerry Manoim Date: Fri, 7 Aug 2020 13:19:54 -0400 Subject: [PATCH] try installing ta-lib first --- .github/workflows/windows_ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows_ci.yml b/.github/workflows/windows_ci.yml index 4b1a1da0dd..0c6cdb0b77 100644 --- a/.github/workflows/windows_ci.yml +++ b/.github/workflows/windows_ci.yml @@ -35,7 +35,13 @@ jobs: # - name: Install requirements # run: | # python -m pip install -r etc/requirements_build.in -c etc/requirements_locked.txt - + - uses: ilammy/msvc-dev-cmd@v1 + - name: Install TA lib + run: | + (New-Object Net.WebClient).DownloadFile('http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-msvc.zip', 'ta-lib-0.4.0-msvc.zip') + Add-Type -AssemblyName System.IO.Compression.FileSystem;[System.IO.Compression.ZipFile]::ExtractToDirectory('ta-lib-0.4.0-msvc.zip', 'C:\') + cd C:\ta-lib\c\make\cdr\win32\msvc + nmake - name: Install requirements run: | conda install -y pandas==0.22.0 numpy==1.19.1 scipy==1.5.0 cython==0.29.21