Skip to content

Commit 3bfa774

Browse files
authored
Merge pull request #330 from jonathangreen/bugfix/sdist-workflow
Fix sdist CI workflow
2 parents e634b2f + 9e134cb commit 3bfa774

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/sdist.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@ on: [push, pull_request]
33
jobs:
44
sdist:
55
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
69
steps:
710
- uses: actions/checkout@v3
8-
- name: Set up Python 3.11
11+
- name: Set up Python
912
uses: actions/setup-python@v4
1013
with:
11-
python-version: "3.11"
14+
python-version: ${{ matrix.python }}
1215
- name: Install build dependencies
1316
run: |
1417
pip install --upgrade pip setuptools wheel
@@ -17,6 +20,7 @@ jobs:
1720
python setup.py sdist
1821
- name: Install test dependencies
1922
run: |
23+
sudo apt-get update
2024
sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl opensc softhsm2 libengine-pkcs11-openssl
2125
pip install --upgrade -r requirements-test.txt --no-binary lxml
2226
pip install dist/xmlsec-$(python setup.py --version).tar.gz

0 commit comments

Comments
 (0)