Use Python 3.11 in GitHub Workflows

This commit is contained in:
rlaphoenix 2023-02-03 07:04:22 +00:00
parent 9568d7fdb9
commit e4a8316227
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10.x'
python-version: '3.11.x'
- name: Install Poetry
uses: abatilo/actions-poetry@v2.1.0
with:

View File

@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
poetry-version: [1.3.2]
steps: