We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b4ead5 commit abcb987Copy full SHA for abcb987
.github/workflows/test-install-scripts.yml
@@ -215,6 +215,10 @@ jobs:
215
if: ${{ matrix.distribution.type == 'amazon' }}
216
run: |
217
yum install --assumeyes git sudo
218
+ # Search for Python 3.10 package
219
+ sudo dnf search python3.10
220
+ # Install Python 3.10
221
+ sudo dnf install python3.10 -y
222
223
- name: Prepare Arch
224
if: ${{ matrix.distribution.type == 'arch' }}
@@ -242,7 +246,7 @@ jobs:
242
246
- name: Prepare Rocky
243
247
if: ${{ matrix.distribution.type == 'rocky' }}
244
248
245
- yum install --assumeyes git sudo python39
249
+ yum install --assumeyes git sudo python310
250
251
- name: Prepare Ubuntu
252
if: ${{ matrix.distribution.type == 'ubuntu' }}
0 commit comments