Update CI to run on python 3.10

This commit is contained in:
Matthias
2021-08-08 10:24:54 +02:00
parent 8edc84bf25
commit 5b2a1b9e7a
3 changed files with 6 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-18.04, ubuntu-20.04 ]
python-version: [3.7, 3.8, 3.9]
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
@@ -51,6 +51,7 @@ jobs:
- name: Installation - *nix
run: |
sudo apt-get install -y libhdf5-serial-dev
python -m pip install --upgrade pip
export LD_LIBRARY_PATH=${HOME}/dependencies/lib:$LD_LIBRARY_PATH
export TA_LIBRARY_PATH=${HOME}/dependencies/lib
@@ -114,7 +115,7 @@ jobs:
strategy:
matrix:
os: [ macos-latest ]
python-version: [3.7, 3.8, 3.9]
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
@@ -205,7 +206,7 @@ jobs:
strategy:
matrix:
os: [ windows-latest ]
python-version: [3.7, 3.8]
python-version: ["3.7", "3.8"]
steps:
- uses: actions/checkout@v2