Skip to content

Commit b035b96

Browse files
committed
⬆️(CI) bump python version in backend test
We were testing the backend with python 3.10.0, but actually the backend was running with python 3.12.6. We bump the python version in the backend test to match the running version of the backend.
1 parent 9623ac4 commit b035b96

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/impress.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ jobs:
107107
- name: Install Python
108108
uses: actions/setup-python@v3
109109
with:
110-
python-version: "3.10"
110+
python-version: "3.12.6"
111+
- name: Upgrade pip and setuptools
112+
run: pip install --upgrade pip setuptools
111113
- name: Install development dependencies
112114
run: pip install --user .[dev]
113115
- name: Check code formatting with ruff
@@ -199,7 +201,7 @@ jobs:
199201
- name: Install Python
200202
uses: actions/setup-python@v3
201203
with:
202-
python-version: "3.10"
204+
python-version: "3.12.6"
203205

204206
- name: Install development dependencies
205207
run: pip install --user .[dev]

0 commit comments

Comments
 (0)