Skip to content

Commit dc167ee

Browse files
committed
Upgrade everything to py3.11
1 parent 6b5eb6d commit dc167ee

File tree

10 files changed

+20
-130
lines changed

10 files changed

+20
-130
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
- name: Set up Python
2424
uses: actions/setup-python@v4
2525
with:
26-
python-version: "3.10"
26+
python-version: "3.11"
2727

2828
- name: Install Poetry
2929
run: |
30-
pipx install poetry --python=python3.10
30+
pipx install poetry --python=python3.11
3131
3232
- name: Poetry caches
3333
uses: actions/cache@v3

.github/workflows/e2e-external.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
- name: Set up Python
2929
uses: actions/setup-python@v4
3030
with:
31-
python-version: "3.10"
31+
python-version: "3.11"
3232

3333
- name: Install Poetry
3434
run: |
35-
pipx install poetry --python=python3.10
35+
pipx install poetry --python=python3.11
3636
3737
- name: Poetry caches
3838
uses: actions/cache@v3

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# See https://pre-commit.com for more information
22
# See https://pre-commit.com/hooks.html for more hooks
33
default_language_version:
4-
python: python3.10
4+
python: python3.11
55

66
ci:
77
# Renovate updates the file. We can't disable pre-commit CI's autoupdate entirely

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ You're welcome to contribute, though I can't promise the experience will be as s
44

55
### Things to know:
66

7-
- Python3.10
7+
- Python3.11
88
- Use [Poetry](https://python-poetry.org/)
99
- Launch tests with `pytest`, config is in setup.cfg
1010
- `black`, `isort`, `flake8` and once mypy will work with 3.10, we'll use it. There's `pre-commit`, so you can install hooks with `pre-commit install`.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# See Dockerfile.build for instructions on bumping this.
2-
FROM ewjoachim/python-coverage-comment-action-base:v1
2+
FROM ewjoachim/python-coverage-comment-action-base:v2
33

44
COPY coverage_comment ./coverage_comment
55
RUN pip install .

0 commit comments

Comments
 (0)