Skip to content

Commit 7b09c90

Browse files
authored
Add Python 3.11 to CI
1 parent 28293b4 commit 7b09c90

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout sources
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v3
1313
- name: Set up Python
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v4
1515
with:
1616
python-version: 3.8
1717
- name: Check formatting
18-
uses: pre-commit/action@v2.0.0
18+
uses: pre-commit/action@v3.0.0
1919

2020
lint:
2121
name: Lint
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout sources
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3
2626
- name: Set up Python
27-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v4
2828
with:
2929
python-version: 3.8
3030
- name: Lint with flake8
@@ -49,12 +49,12 @@ jobs:
4949
runs-on: ubuntu-latest
5050
strategy:
5151
matrix:
52-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
52+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
5353
steps:
5454
- name: Checkout sources
55-
uses: actions/checkout@v2
55+
uses: actions/checkout@v3
5656
- name: Set up Python ${{ matrix.python-version }}
57-
uses: actions/setup-python@v2
57+
uses: actions/setup-python@v4
5858
with:
5959
python-version: ${{ matrix.python-version }}
6060
- name: Install dependencies

.github/workflows/pythonpublish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Set up Python
13-
uses: actions/setup-python@v1
13+
uses: actions/setup-python@v4
1414
with:
1515
python-version: "3.8"
1616
- name: Install dependencies

0 commit comments

Comments
 (0)