Update Python installation and dependencies

This commit is contained in:
Miha Kralj
2023-05-05 07:49:58 -07:00
parent 56f8db2949
commit 9714dedcba
6 changed files with 123 additions and 37 deletions
+22
View File
@@ -45,6 +45,27 @@ jobs:
#configFilePath: GitVersion.yml
updateAssemblyInfo: true
############## Install Python
# - name: Install Python3
# uses: actions/setup-python@v2
# with:
# python-version: 3.x
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y python3-dev
sudo apt-get install -y python3-pip
- name: Install pandas-ta
run: |
pip3 install numpy
pip3 install pandas
pip3 install pandas-ta
############## Install more tools
- name: Install JDK11 for Sonar Scanner
uses: actions/setup-java@v3
with:
@@ -158,3 +179,4 @@ jobs:
--api-key ${{ secrets.NUGET_DEPLOY_KEY_QUANTLIB }}
--source https://api.nuget.org/v3/index.json
--skip-duplicate