Skip to content

Commit

Permalink
Merge pull request #330 from jonathangreen/bugfix/sdist-workflow
Browse files Browse the repository at this point in the history
Fix sdist CI workflow
  • Loading branch information
jimjag authored Nov 5, 2024
2 parents e634b2f + 9e134cb commit 3bfa774
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/sdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ on: [push, pull_request]
jobs:
sdist:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
python-version: ${{ matrix.python }}
- name: Install build dependencies
run: |
pip install --upgrade pip setuptools wheel
Expand All @@ -17,6 +20,7 @@ jobs:
python setup.py sdist
- name: Install test dependencies
run: |
sudo apt-get update
sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl opensc softhsm2 libengine-pkcs11-openssl
pip install --upgrade -r requirements-test.txt --no-binary lxml
pip install dist/xmlsec-$(python setup.py --version).tar.gz
Expand Down

0 comments on commit 3bfa774

Please sign in to comment.