Skip to content

Commit

Permalink
Merge pull request #332 from jonathangreen/bugfix/osx-workflow
Browse files Browse the repository at this point in the history
Fix macosx CI workflow
  • Loading branch information
jimjag authored Nov 5, 2024
2 parents 30763b6 + 911c537 commit ebbc3f7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/macosx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
static_deps: ["static", ""]
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -35,7 +35,8 @@ jobs:
echo "LLVM_PROFILE_FILE=pyxmlsec.profraw" >> $GITHUB_ENV
- name: Install test dependencies
run: |
pip install coverage --upgrade -r requirements-test.txt
export PKG_CONFIG_PATH="$(brew --prefix)/opt/libxml2/lib/pkgconfig"
pip install coverage --upgrade --no-binary=lxml -r requirements-test.txt
pip install xmlsec --only-binary=xmlsec --no-index --find-links=dist/
echo "PYXMLSEC_LIBFILE=$(python -c 'import xmlsec; print(xmlsec.__file__)')" >> $GITHUB_ENV
- name: Run tests
Expand Down

0 comments on commit ebbc3f7

Please sign in to comment.