diff --git a/.github/workflows/ci_workflow.yml b/.github/workflows/ci_workflow.yml index df14194..79ebd75 100644 --- a/.github/workflows/ci_workflow.yml +++ b/.github/workflows/ci_workflow.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: # Only lint using the primary version used for dev - python-version: [3.7] + python-version: [3.11] steps: - uses: actions/checkout@v2 @@ -22,7 +22,7 @@ jobs: - name: Install Poetry run: | python -m pip install --upgrade pip - pip install poetry==1.2.* + pip install poetry==1.3.2 poetry install -v - name: Run lint command from tox.ini run: | @@ -35,7 +35,7 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9, "3.10", 3.11] steps: - uses: actions/checkout@v2 @@ -46,7 +46,7 @@ jobs: - name: Install Poetry run: | python -m pip install --upgrade pip - pip install poetry==1.2.* + pip install poetry==1.3.2 - name: Install dependencies run: | poetry install