diff options
author | 2022-10-25 21:56:39 +0100 | |
---|---|---|
committer | 2022-12-11 13:43:22 +0000 | |
commit | 5ca70e57a13a0e302fc461c717d1549bd9091934 (patch) | |
tree | e319f048b6e0bf1a44c748faf31f2bb16a9b7f54 /.github | |
parent | Support 3.11 & bump all deps (diff) |
Support 3.11 and bump CI to use 3.11
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docs.yaml | 8 | ||||
-rw-r--r-- | .github/workflows/lint-test.yaml | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 372a2b8f..6d6c9569 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -21,10 +21,10 @@ jobs: - uses: actions/checkout@v2 - name: Install Python Dependencies - uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.1 + uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.2 with: dev: true - python_version: "3.10" + python_version: "3.11" install_args: "--extras async-rediscache" - name: Generate HTML Site @@ -46,10 +46,10 @@ jobs: fetch-depth: 0 # We need to check out the entire repository to find all tags - name: Install Python Dependencies - uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.1 + uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.2 with: dev: true - python_version: "3.10" + python_version: "3.11" install_args: "--extras async-rediscache" - name: Build All Doc Versions diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index dc83086b..222deb24 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -16,11 +16,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Install Python Dependencies - uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.1 + uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.2 with: # Set dev=true to run pre-commit which is a dev dependency dev: true - python_version: "3.10" + python_version: "3.11" install_args: "--extras async-rediscache" # We will not run `flake8` here, as we will use a separate flake8 |