Skip to content

Commit

Permalink
Add Python 3.11 as default (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeMyst committed Nov 13, 2022
1 parent a3a72bf commit 7c33528
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:

steps:
- uses: actions/checkout@v3.1.0
- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v4.3.0
with:
python-version: '3.10'
python-version: '3.11'

- name: Install pypa/build
run: >-
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
steps:
- uses: actions/checkout@v3.1.0

- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v4.3.0
with:
python-version: '3.10'
python-version: '3.11'

- name: Cache pip
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ] # '3.11-dev'
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]

steps:
- uses: actions/checkout@v3.1.0
Expand Down

0 comments on commit 7c33528

Please sign in to comment.