From 8eecd3c80911b4fbe5910a3eaa19efc4f9a974f5 Mon Sep 17 00:00:00 2001 From: Matthias Cuntz Date: Sun, 31 Jul 2022 22:15:40 +0200 Subject: [PATCH] Removed Python 3.7 from checks because of problems with HDF5 on Windows --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9b2916a..4bbc4c0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,10 +26,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 + - name: Set up Python 3.10 uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: '3.10' - name: Install dependencies run: | @@ -44,7 +44,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] # python-version: [3.6, 3.7, 3.8, 3.9] - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.6', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2