Skip to content

Commit 845e942

Browse files
committed
use Python 3.11
Signed-off-by: Sylvain Hellegouarch <[email protected]>
1 parent ca395a8 commit 845e942

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: '3.11'
1518
- name: Install dependencies
1619
run: |
1720
python -m pip install --upgrade pip setuptools wheel
@@ -23,7 +26,7 @@ jobs:
2326
2427
echo "Install CTK and minor dependencies"
2528
pip install --prefer-binary --pre -U chaostoolkit-lib chaostoolkit
26-
pip install --prefer-binary httplib2 uritemplate pytzdata
29+
pip install --prefer-binary httplib2 uritemplate pytzdata lueur
2730
2831
echo "install all the dependencies for our drivers"
2932
pip install --prefer-binary -U -r requirements-toolkit.txt

.github/workflows/build_and_deploy.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: '3.11'
1518
- name: Install dependencies
1619
run: |
1720
python -m venv .venv
@@ -26,7 +29,7 @@ jobs:
2629
2730
echo "Install CTK and minor dependencies"
2831
pip install --prefer-binary --pre -U chaostoolkit-lib chaostoolkit
29-
pip install --prefer-binary httplib2 uritemplate pytzdata
32+
pip install --prefer-binary httplib2 uritemplate pytzdata lueur
3033
3134
echo "install all the dependencies for our drivers"
3235
pip install --prefer-binary -U -r requirements-toolkit.txt

0 commit comments

Comments
 (0)