diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 1694fd78fe4..9b70ff159ee 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -31,7 +31,7 @@ jobs: uses: actions/setup-python@v2 id: python with: - python-version: 3.8 + python-version: "3.x" - name: Install pre-commit run: | @@ -48,10 +48,10 @@ jobs: - name: Check out repository uses: actions/checkout@v2 - - name: Enable version 3.8 of Python + - name: Set up Python uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: "3.x" - name: Install dependencies run: make requirements diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index dd5570ac76a..d414fada128 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9] + python-version: [3.8, 3.9, "3.10"] steps: - name: 📥 Checkout the repository uses: actions/checkout@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1882fd0c59..a0c4de03806 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: "3.x" - name: Get version id: version