diff options
| author | 2022-10-25 21:56:39 +0100 | |
|---|---|---|
| committer | 2022-10-25 21:56:39 +0100 | |
| commit | ca11056f14a2c765407956a77e84de587d49c536 (patch) | |
| tree | a3134d356c0445592a69a2a98e6146328effbcf7 /.github | |
| parent | Bump 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 42c9e742..8f7f332c 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 e9821677..9968a44d 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  |