Skip to content

Commit c39d9e4

Browse files
committed
Move test to py3.10 and install apt reqs to install libvirt
1 parent 291cec8 commit c39d9e4

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,16 @@ jobs:
159159

160160
strategy:
161161
matrix:
162-
python_version: [ "3.9" ]
162+
python_version: [ "3.10" ]
163163

164164
steps:
165165
- uses: actions/checkout@v6
166+
167+
- name: Install system dependencies
168+
run: |
169+
sudo apt-get update
170+
sudo apt-get install -y libvirt-dev pkg-config gcc
171+
166172
- name: Use Python ${{ matrix.python_version }}
167173
uses: actions/setup-python@v6
168174
with:
@@ -205,7 +211,7 @@ jobs:
205211
tar -xzvf "${TARBALL_FILENAME}"
206212
207213
cd "apache_libcloud-${VERSION}/"
208-
tox -c tox.ini -epy3.9
214+
tox -c tox.ini -epy3.10
209215
210216
- name: Verify Wheel Release Artifact
211217
run: |
@@ -225,7 +231,7 @@ jobs:
225231
cp ../../tox.ini .
226232
cp ../../requirements-tests.txt .
227233
cp ../../libcloud/test/secrets.py-dist libcloud/test/secrets.py-dist
228-
tox -c tox.ini -epy3.9
234+
tox -c tox.ini -epy3.10
229235
230236
build_test_docker_image:
231237
name: Build and Verify Docker Image

0 commit comments

Comments
 (0)