Skip to content

Commit f41462c

Browse files
authored
Merge pull request #92 from gdubicki/python_3.11
Add Python 3.11 and update actions
2 parents 285922f + 9f898e0 commit f41462c

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/doc.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212

1313
steps:
1414

15-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v3
1616

1717
- name: Set up Python
18-
uses: actions/setup-python@v2.2.2
18+
uses: actions/setup-python@v4
1919
with:
20-
python-version: "3.10"
20+
python-version: "3.11"
2121

2222
- uses: extractions/setup-just@v1
2323

.github/workflows/linters.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313

1414
steps:
1515

16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v3
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v2.2.2
19+
uses: actions/setup-python@v4
2020
with:
21-
python-version: "3.10"
21+
python-version: "3.11"
2222

2323
- name: Install and configure poetry
2424
run: |

.github/workflows/safety.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
safety:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v1
10+
- uses: actions/checkout@v3
1111

1212
- name: Set up Python
13-
uses: actions/setup-python@v2.2.2
13+
uses: actions/setup-python@v4
1414
with:
15-
python-version: "3.10"
15+
python-version: "3.11"
1616

1717
- name: Install and configure poetry
1818
run: |

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.7", "3.8", "3.9", "3.10"]
16+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818

1919
steps:
2020

21-
- uses: actions/checkout@v1
21+
- uses: actions/checkout@v3
2222

2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v2.2.2
24+
uses: actions/setup-python@v4
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727

0 commit comments

Comments
 (0)