bump project to python 3.11

This commit is contained in:
Jakub Miazek 2023-02-14 19:23:57 +01:00
parent de25c736c0
commit 42a90926d7

View File

@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ["3.10"] python-version: ["3.11"]
fail-fast: false fail-fast: false
env: env:
@ -48,7 +48,7 @@ jobs:
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: .venv path: .venv
key: venv-${{ runner.os }}-3.10-${{ hashFiles('**/poetry.lock') }} key: venv-${{ runner.os }}-3.11-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies - name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root run: poetry install --no-interaction --no-root