From e7e41c6b9fc87bc1c95c75c5074972ab76a251cc Mon Sep 17 00:00:00 2001 From: Sasha Rahlin Date: Wed, 24 Apr 2024 14:02:18 -0500 Subject: [PATCH] require python version --- .github/workflows/documentation.yaml | 2 ++ .github/workflows/pull_request.yaml | 2 ++ .github/workflows/release.yaml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index 05514df..9aaadc0 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -15,6 +15,8 @@ jobs: uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 + with: + python-version: "3.11" - name: Lint uses: psf/black@stable with: diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index c3612ce..6263cb7 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -19,6 +19,8 @@ jobs: version: "23.7.0" - name: Setup python uses: actions/setup-python@v4 + with: + python-version: "3.11" - name: Install dependencies run: | python -m pip install --upgrade jupyter matplotlib diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e43d02e..457164e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,6 +18,8 @@ jobs: version: "23.7.0" - name: Setup python uses: actions/setup-python@v4 + with: + python-version: "3.11" - name: Install dependencies run: | python -m pip install --upgrade jupyter matplotlib build twine